iframe load event not working in ie6
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
}
精彩评论