Dialog form populated with info from page
Permalink
This is my dialog code:
jQuery.fn.dialog.open({
title: 'Edit School',
href: editItemURL,
width: 550,
modal: false,
height: 380
});
The 'editItemURL' loads a form. Is there a way to populate this form with information from the current page?
jQuery.fn.dialog.open({
title: 'Edit School',
href: editItemURL,
width: 550,
modal: false,
height: 380
});
The 'editItemURL' loads a form. Is there a way to populate this form with information from the current page?