Found Property



 
The Found property contains the forbidden expression that has been found.


Syntax

    [str=] BlockInfo.Found
Possible Values
    String that retrieves the reason.

    The property is read only.
Remarks
    None.
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