Hello,
I have 2 questions regarding jscript.
1. How do you call display another web page using jscript?
2. How do you refresh the web browser using jscript.
Any help would be greatly appreciated!
Thanks in advance.
Serge Baltic - 24 Aug 2005 13:55 GMT
Hello,
m> 1. How do you call display another web page using jscript?
document.location = "http://…";
m> 2. How do you refresh the web browser using jscript.
document.location.reload();
(H) Serge