Hello,
This is my jquery code (please look at below) , but the problem is when i edit or update any data on popup window, the popup it not automatic close and my master page it also not automatic refresh, any one can help please give me suggestion and some sample, i need my popup close automatic and my master page also automatic refresh new data...
thanks
Soe
=================================== jquery popup code==============
$('input.#popup').click(function(e) {
e.preventDefault();
var $this = $(this);
var horizontalPadding = 0;
var verticalPadding = 0;
var key = document.form1.f_comcode.value;
var page = document.form1.page.value;
$('<iframe id="externalSite" class="externalSite" src="add_popup.php?f_comcode='+key+'&page='+page+' " frameborder="0" >').dialog({
title: ($this.attr('title')) ? $this.attr('title') : 'Search : '+key,
autoOpen: true,
top:'dialogs',
id:'dialogs',
width: 'auto',
height: 'auto',
modal: true,
resizable: true,
autoResize: true,
bgiframe: true,
modal: true,
cache: true,
position:["center",0],
overlay: {
opacity: 0.1,
background: "black"
}
}).width(800 - horizontalPadding).height(510 - verticalPadding);
});