Reputation: 1
How can i change innerhtml of a div in the aspx page when clicking on jquery pop up close button?
Upvotes: 0
Views: 466
Reputation: 18344
With this:
$( "#your_dialog" ).bind( "dialogbeforeclose", function(event, ui) {
$("#main_page_div").html("Your new HTML");
});
Hope this helps. Cheers
Upvotes: 1