ROBIN
ROBIN

Reputation: 1

How can i change innerhtml of a div in the parent page from jquery pop up

How can i change innerhtml of a div in the aspx page when clicking on jquery pop up close button?

Upvotes: 0

Views: 466

Answers (1)

Edgar Villegas Alvarado
Edgar Villegas Alvarado

Reputation: 18344

With this:

$( "#your_dialog" ).bind( "dialogbeforeclose", function(event, ui) {
  $("#main_page_div").html("Your new HTML");
});

Hope this helps. Cheers

Upvotes: 1

Related Questions