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