Popup Elements

Each popup consists of 3 elements: title, body, and buttons. Each panel can contain any HTML. You can also have two buttons in the title: max and close.
function popup1() { w2popup.open({ title: 'Popup Title', body: '
This is text inside the popup
', buttons: 'buttons', showMax: true }); } function popup2() { w2popup.open({ body: '
Click anywhere outside the popup to hide it.
', }); }