if not open
Posted: Fri Jan 15, 2016 1:18 pm
I want a popup to open if a panel is closed. How to do that in Javascript?
I tried this but then the panel just closing.:
code
if (Appery("panelName").panel() = "close")
{
Appery("popupName").popup("open");
}
/code