IE8 weird issue with jQuery
On this domain http://demo.acylo.com when you go to IE8 ... It loads up fine, but I开发者_开发问答'm using a jQuery script to show some buttons on hover... The problem is, right after you hover on that block of div, everything is going insane... It works fine on all the other browsers.
I tried adding float: left to that div and width: 100%, but it still doesn't work. Also in IE6/IE7 the arrows are not showing up, even if I added display: block on hover in jQuery
All IE browsers have this issue with jQuery. Especially cloning of element does not work in IE. There is a heavy use of cloning in jQuery and it works perfectly fine in all other browsers.
Custom code should be written, checking for the browser being used. Special code need to be written for IE only.
精彩评论