Reputation: 1901
I'm talking about the fact that IE doesn't like stuff like:
some_table_element.innerHTML = some_HTML_to_create_dynamic_tables;
Is there any way I can go around it so that I don't have to re-write a day's worth of code for it? maybe with jQuery?
I'm working on a table structure that allows the change of whole rows and even tables with one click of a button and I forgot that IE doesn't like it at all
Upvotes: 0
Views: 353
Reputation: 3092
Please see Eric Vasilik's blog on a work-around: http://www.ericvasilik.com/2006/07/code-karma.html
Upvotes: 2