ExcludePages Method
The ExcludePages method excludes the specified pages from popup blocking.
Syntax
SiteKiosk.SiteKioskUI.PopupManager.ExcludePages(URLContext, URL)
|
Parameters
URLContext |
String that specifies the URL of the page that opens the popup. |
URL |
String that specifies the URL of the popup page. |
Return Value
Remarks
Examples
The following example excludes an URL from popup blocking.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
var ExURL = "http://www.google.com/";
SiteKiosk.SiteKioskUI.PopupManager.ExcludePages("", ExURL);
</SCRIPT>
|
Applies to
SiteKiosk v6.5 (and later versions).
Back to top