Script Error: Unable to modify the parent container element before the child element is closed. What should I do? I click Yes, and my web page isn't displayed.
At the beginning of my Product page code, I have: http://pastebin.com/iiUfMq1v
Everything works fine in every browser except IE8, that is the only browser that is throwing any sort of error.
Any ideas?
Please check these links
Basically it will happen when you try to update a element by javascript which is the parent of current element or the element does not render at all. I faced this issue and fixed by running the script after the page loads. i.e inside $(document).ready()
hope this helps someone..