Hi,
I'm having an odd issue when implementing fades in IE to an iframe element. The element is fading in/out correctly however the animation tends to not be smooth... tends to be very "jerky" and moreover isn't 100% consistent with how the elements fade in. Have included the code below which as you can see is super simple.. any ideas?
Code:
var trackKC = function(page) {
var iframe = Ext.get("reframe");
var iframe_content = Ext.get("reframe_content");
var btn_return = Ext.get("button12840");
iframe_content.set({src: page});
//iframe.setStyle("z-index", "999");
iframe.setVisible(true,true);
//btn_return.setStyle("z-index", "1000");
btn_return.setVisible(true);
VarKCcounter.set("0");
};
Cheers!