Hi all!
jQuery.ready() allows us to wait for the construction of the webpage. Recently it has been added support to wait until CSS files are loaded.
I would like to know if that feature can be used for downloaded content, because I fetch content via $.ajax() that holds CSS references and I would like to retrieve the content of the CSS before working with the retrieved content.
- Fetch with $.ajax() the html.
- --> Wait until all CSS is downloaded.
- Show to fetched content (already css'ed).
Thank you very much for your help.