Restart Gadget

hi every one

any one have a code to restart a the gadget, or force js array to loaded from file not from memory

please any one know solution send it

thanks

[183 byte] By [fathiS.Elashery] at [2008-2-8]
# 1
could you explain in more detail what you are trying to accomplish?
BruceWilliams at 2007-9-3 > top of Msdn Tech,Gadgets,Sidebar Gadget Development...
# 2
window.location.reload(true);

which should reload the Gadget, or setup an interval timer to reload it ie:

timer1 = window.setInterval("refreshGadget()", <ms>);

...

function refreshGadget() {
<code to reload array and update HTML elements>
}

JonathanAbbott at 2007-9-3 > top of Msdn Tech,Gadgets,Sidebar Gadget Development...