简体   繁体   中英

jQuery UI slide doesn't work in IE

I have a jQuery script for sliding an element page to left when the link is clicked. It works for every famous browser except IE. How can I fix this?

Here is the script:

$("a.openHome").click(function(){
    $(".halamanContact").hide('slide', {direction: 'left'},'slow');
});

I had a similar problem and in my case it was related to jQuery UI 1.8 script calling a method on the object console . Removing the string this.debug&&console.log.apply("",arguments) from the file fixed my problem.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM