The header() method returns jQuery object representing popup's header.
Syntax
popup.header();
Arguments
No arguments.
Return value
jQuery object representing popup's header.
Example
We open Products table Add page in popup and change header background to lightgreen.
var popup = Runner.displayPopup({
url: Runner.pages.getUrl("products","add"),
header: 'Add Product'
});
var header = popup.header();
header.css("background", "lightgreen");
Result
See also: