ID Property



 
The ID property contains the ID of the blocking process.


Syntax

    [long=] BlockInfo.ID
Possible Values
    Long value that retrieves the ID.

    The property is read only.
Remarks
    None.
Examples
    The following example shows the ID of the blocking process.

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

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

Back to top