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 jQuery 1.6.1 and I have some code that's erroring out in IE7, saying

Unexpected call to method or property access.
jquery.min.js, line 17 character 28710

That line is a call to

this.appendChild(a)

which is inside the .html() method.

My problem is that the code I have errors out when ran normally, but if I use IE's debugger and F10 (step) through the code, it works! This leads me to believe it's a synchronization issue with the .html() method itself. Has anyone else experienced this?

share|improve this question
2  
I think it will be much easier to help if you post the code. – Dan Tao Nov 23 '11 at 17:29

1 Answer

up vote 1 down vote accepted

This usually happens when you are using .html() on HTML 5 elements in IE. You have to initialize an HTML 5 shiv first. Modernizr supports the Shiv plus many other useful features. Also have a look at innverShiv for setting innerHtml.

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.