URL Property



 
The URL property contains the URL of the blocked page.


Syntax

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

    The property is read only.
Remarks
    None.
Examples
    The following example shows information about the URL that has been blocked.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKiosk.Plugins("SiteCoach").OnBlockURL = OnBlockURL;
    function OnBlockURL(blockedpage)
    {
       alert("\"" + blockedpage.URL + "\"" + " is blocked");
    }
    </SCRIPT>
    

Applies to
    SiteKiosk v5.0 (and later versions).

Back to top