Reputation: 110
$(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 is my jQuery part and it is working properly in all other browsers
Upvotes: 1
Views: 371
Reputation: 130
try this
$(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;
});
});
Upvotes: 2