Excuse my ignorance for I’m a rookie programmer and my language mistakes for I’m a non native english speaker.
I’ve got a page that, on some click events triggers some javascript and loads ,via php, content into an iframe which also performs some javascript actions (on itself and on the parent page). Everything works fine on FF and all the features work fine in IE too. But the performance in IE is terribly slow…one of the main features is to change opacity of some pictures on mouse up, and it takes 2s+ for IE to display the new opacity. Why? and more important, what can I do to fix it?
Thanks in advance,
Irene
IE has a horribly slow JavaScript engine compared to every other major browser (I’m speaking to IE8 not IE9+)…that’s just how it is. You may want to disable certain things in IE, and of course optimize your script overall.
You may for example want to disable the fade in IE, or give it far fewer frames (longer interval in-between steps), because of its DirectX opacity filter, it’s much slower than other browsers in most fade situations.
To profile performance problems specific to IE, I highly recommend dynaTrace AJAX edition, it’s a free performance profiler made just for IE.