Reputation: 11888
I am hiding an element in my javascript :
$download_btn = jQuery('a#menu_download_btn');
...
$download_btn.hide();
It works fine for all my browsers/version but IE7. Are they simple not compatible ?
Thanks
Upvotes: 0
Views: 5701
Reputation: 131
IE 7 is compatible with jQuery (1.8.3). below link will let you know the browser support for the jQuery versions. http://jquery.com/browser-support/
Upvotes: 3
Reputation: 449
Well, jquery.com says they support IE 6+ for jQuery 1.X (http://jquery.com/browser-support/). I think You should try to hide div another way.
You should also check if your html and script is ok. Also console.log is a problem for ie so remove them if any.
Upvotes: 0