Description Property
The Description property contains the description of the reason for the block.
Syntax
[str=] BlockInfo.Description
|
Possible Values
String that retrieves the description.
|
The property is read only.
Remarks
Examples
The following example shows the description of the block.
<SCRIPT TYPE="text/javascript">
window.external.InitScriptInterface();
SiteKiosk.Plugins("SiteCoach").OnBlockURL = OnBlockURL;
function OnBlockURL(blockedpage)
{
alert(blockedpage.Description);
}
</SCRIPT>
|
Applies to
SiteKiosk v6.0 (and later versions).
Back to top