internet explorer - iframe content is not displaying in jquery dialoge in IE. It shows only a blank dialog -


$(function(){       var options = {       autoopen: false,       modal: true,       show: 'slide',       resizable: false,              width: 800,              height: 700          };             $('#dialog').append(iframe).appendto("body").dialog(options);                       // dialog link             $('#dialog_click').click("callback",function(){                          $('#dialog').dialog('open');                                     return false;             });   }); 

this jquery part , working in other browsers

try

     $(function(){               var options = {         autoopen: false,         modal: true,                    resizable: false,                width: 800,                height: 700                      };         $('#dialog').append(iframe).appendto("body").dialog(options);                   // dialog link         $('#dialog_click').click("callback",function(){                      $('#dialog').dialog('open');                                 return false;         });  }); 

Comments

Popular posts from this blog

Why does Ruby on Rails generate add a blank line to the end of a file? -

keyboard - Smiles and long press feature in Android -

node.js - Bad Request - node js ajax post -