In my javascript app, I dynamically add css to a page, using something like this
document.head.innerHTML += '<link rel="stylesheet" type="text/css" href="/components/bubble_list/simple/sm_bubble_list.css">';
I'm not sure if this is me, but I find that it seems to temporarily disable all existing css when processing the css from that file. If this is the normal behaviour, is there a better way to add css dynamically, so that the flow is more natural, like it only processes the css from that file?
Thanks