// create a style element
$("#main").html('<style id="custom_persona_css"></style>');
$("#custom_persona_css").append('#abc{ color:#000000; }');
As you can tell, this does not work in IE8!
How can I make it work in IE8?
There will be an error of : ‘unexpected call to method or property access’ because IE8 does not recognize the html as valid (abc part)
In MSIE set the cssText-property of the styleSheet-object related to the
<style/>-element:http://jsfiddle.net/doktormolle/BLJUv/
More Info: http://msdn.microsoft.com/en-us/library/ie/ms533698%28v=vs.85%29.aspx