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'm using Dean Edwards' IE7.js for IE6

<!--[if lt IE 7]>
<script src="http://ie7-js.googlecode.com/svn/version/2.0(beta3)/IE7.js" 
        type="text/javascript"></script>
<![endif]-->

and getting a JavaScript error on IE 6 when it reads the line:

c.runtimeStyle[h]=c.parentElement.currentStyle[h]

How can I solve this?

share|improve this question

1 Answer

I don't believe IE6 has a parentElement property. You might be able to get around this by including this code in the <!--[if lt ie7]> tag:

Element.prototype.parentElement = Element.prototype.parentNode;
share|improve this answer
but for IE7 i don't need this javascript. I use this only for IE6. – Jitendra Vyas Nov 21 '09 at 4:58
2  
Actually parentElement is IE-only. – Crescent Fresh Nov 21 '09 at 5:48

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.