Found Property
The Found property contains the forbidden expression that has been found.
Syntax
Possible Values
String that retrieves the reason.
|
The property is read only.
Remarks
Examples
The following example shows information about the reason for the blocking.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteKiosk.Plugins("SiteCoach").OnBlockURL = OnBlockURL;
function OnBlockURL(blockedpage)
{
alert(blockedpage.Found);
}
</SCRIPT>
|
Applies to
SiteKiosk v5.0 (and later versions).
Back to top