Skip to content Skip to sidebar Skip to footer

Jquery, Change Jqueryui Dialog Box Content From A Ajax Call In The Webpage

jqueryui is used to show a dialog box, then if there is a click the 'dialog_insider' on the dialog box ,not on the flat (correct wording?) webpage , an ajax call will be made. The

Solution 1:

To make javascript from ajax-called page running, you need to apped it to the current document.

And opener won't work when you make an AXAJ call, works only with opened window.

$.post("replace.php", {}, function(response){
    $('body').append(response);
});

JS will execute when you append it, or make eval();

Post a Comment for "Jquery, Change Jqueryui Dialog Box Content From A Ajax Call In The Webpage"