I am loading a page using load function the dialog is not open but when i refresh a page the dialog is worked. The alert is working using load(). Any suggestions?
jQuery( "#edit-address-map" ).live('click', function(){
alert('in');
jQuery( "#edit-address-map-div" ).dialog({
modal: true,
height:370,
width:350,
resizable: true,
draggable: false,
dialogClass: "flora",
close: function(ev, ui) { jQuery(this).dialog('destroy'); }
});
});