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
Post a Comment