iframe load event in jQuery is not working in IE6
var iframe = this.iframe;
iframe.load(function(){
});
iframe load event in jQuery is not working in IE6
var iframe = this.iframe;
iframe.load(function(){
});
Just noticed the this.iframe - i think you want:
var iframe = $('#iframe-ID-or-Class');
iframe.load(function() {
//executable code
}