The footer() method returns jQuery object representing popup's footer.
Syntax
popup.footer();
Arguments
No arguments.
Return value
jQuery object representing popup's footer.
Example
We open Products table Add page in popup and add our own text to the footer.
var popup = Runner.displayPopup({
url: Runner.pages.getUrl("products","add"),
header: 'Add Product'
});
var footer = popup.footer();
footer.html("<p style='text-align: center; font-size: 120%;'>This is my new footer</p>");
Result
See also: