Thanks dcrombie, We can have one more way of doin this shown as below.. window.location="refreshPage.html"; Where 'refreshPage.html' is the current page u want to refresh...
Sireesha
HocusPocus
12:44 pm on Jan 31, 2004 (gmt 0)
or location.reload(true)
The 'true', specifies whether the doc should be reloaded, even if the server reports that it hasn't been modified since it was last loaded. Ie it bypasses the cache
dcrombie
1:38 pm on Jan 31, 2004 (gmt 0)
Instead of "window.location" you should use "self.location.href".