Delete Method



 
The Delete method deletes the favorite.


Syntax

    SiteKiosk.Favorites.Item(index).Delete()
    
Return Value
    None.
Remarks
    None.
Examples
    The following example deletes the first existing favorite.

    <SCRIPT TYPE="text/javascript">
    window.external.InitScriptInterface();
    SiteKiosk.Favorites.Item(1).Delete();
    </SCRIPT>
    

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

Back to top