Hi all, I currently have issues in Webkit(Safari and Chrome) were I try to load dynamically (innerHTML) some html into a div, the html contains css rules (...), after the html gets rendered the style definitions are not loaded (so visually I can tell the styles are not there and also if I search with javascript for them no styles are found). I have tried using a jquery plugin tocssRule(), it works but it is just too slow. Is there another way of getting webkit to load the styles dynamically? Thanks. Patrick
|
|
I think it's a better practice to append a "link" tag to the head of your document. If that isn't possible, try to append a "style" tag to the head. Style tags shouldn't be in the body (Doesn't even validate). Append link tag:
Append style tag:
|
|||
|
|
|
|
Thanks Vatos, you gave me a good lead, basically I did what you suggested but used jquery to set the html and append the new style to the head since, safari/chrome would stall when doing innerHTML and document.head was undefined. My code ended looking like this
|
||
|
|
|
|
Here's the gig. What Patrick said did not work for me. Here's how i did it.
InnerHTML is depricated and shouldn't be used for such a thing. futhermore it is slower too. |
||
|
|
|
|
simplest way (using jQuery that is) is the following:
If you do it that way then it will work in Safari. If you do it the normal jQuery way (all in one text string) it will fail (the css won't load). Then you just append it to the head with $('head').append(cssLink); |
||
|
|
