I’m trying to render a page dynamically with jQuery. Basically, on the page loading, I have a bunch of JSON data and I’m creating the content of the page based on that.
This is working for almost every browsers except for IE9 with IE7 standards view.
Since it’s a website with a lot of different users I would like to make sure this is working for that version too. Do you know if there are any “tweaks” I can do to improve the compatibility with IE7 and dynamically rendering using jQuery?
Thanks.
NB
I’ve solved this. I had a error in the JavaScript when constructing the table.
Besides that, if I had “display:none” to a div that will be modified to “display:block” using JS after the click on a button, IE9 with IE7 standards doesn’t allow me to show it.
I have to find another way but I think I’ll modify the display of the div using JS after the document final load and all the divs are already in place.
Thanks for the comments nevertheless.