Refresh Method



 
The Refresh method refreshes the display of the icon.


Syntax

    document.all['icon_id'].Refresh()
    
Return Value
    None.
Remarks
    None.
Examples
    The following example shows a function that refreshes the display of the specified icon. This function will only work in the browser skin files.

    function refreshicon(icon_id)
    {
       icon_id.Refresh();
    }
    

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

Back to top