Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to CSS assigned inside the head tag using JS, its not working for IE any idea why? IE just show "Unknown runtime error".

<html>
<head>
<style id="style_id" type="text/css">
</style>
</head>
<body>
<p>This is the test Text</p>
</body>
<script>
    var st = document.getElementById("style_id");
    st.innerHTML = "p { color:red}";
</script>
</html>
share|improve this question
1  
This is not trivial. See the linked dupe question for a good answer – Pekka 웃 Oct 25 '10 at 10:33
Not getting..... do you agree with what @Chinmayee's answer? – Anil Namde Oct 25 '10 at 13:24

1 Answer

up vote 0 down vote accepted

Are you looking for this one?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.