OnDownloadSuppressed Event



 
Fires when a download has been suppressed.


Syntax

    SiteKiosk.Network.Downloads.OnDownloadSuppressed = handler
    
Parameters
    url String containing the suppressed URL.
Remarks
    The object that caused the event can be referenced in the event function using "this".
Examples
    The following example shows an alert window when a download has been suppressed.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKiosk.Network.Downloads.OnDownloadSuppressed = OnDownloadSupp;
    function OnDownloadSupp(url)
    {
       alert(url + " has been suppressed.");
    }
    </SCRIPT>
    

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

Back to top