I have the following jQuery script which uses AJAX to load another internal page into a dialog.
function showUrlInDialog(url) {
var tag = jQuery("<div></div>");
jQuery.ajax({
url: url,
success: function(data) {
tag.html(data).dialog({modal: true}).dialog('open');
});
}
The dialog is opened with the following:
<a href="#" onclick="showUrlInDialog('/feedback-form'); return false;">Some Text</a>
Source: 8Rays.
The script seems to work just fine, but for my needs, there is some additional code needed.
On the page I need to open, I want to focus on a specific div within the page (#CommentBlock). It is a comment submission form, 450px by 650px.
What change to above code will keep the rest of the page out off view when it's loaded into the dialog/modal window?
How can the script be modified so that when the submit button on the page in the window is released, the dialog is closed/destroyed x seconds later?