Internet Explorer does NOT respect jQuery's slideDown effect
- by Fayaz Mammoo
I Use internet explorer and last version of jquery. effetcs like slidedown, fadein, fadeout dont work with ie but works good with Google Chrome. How to fix it?
Code runs fine in Google Chrome:
jQuery.noConflict();
jQuery(document).ready(function(){
jQuery("#form1").hide();
jQuery("#form1").fadeIn(6000, function() {
// Animation complete.form1:mainHome:panelGroup2
});
});