You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notice: the default alert and overlay IDs should be “AE” and “OV” respectively.
JS:
AlertShow("Test message",// alert caption"Yes or no?",// alert text"warning",// alert type"YESNO",// alert button type[function(){// on YESconsole.log("yes");},function(){// on NOconsole.log("no");}]);// default alert button type is "OK"AlertShow("Alert","Message","info");AlertShow("Alert","Message","error","OK",[function(){// on OKconsole.log("ok");}]);