Has anyone ever had to manually direct a page in html for Netscape and if so how did you get it to work? Using VBscript. It's client side code, when I press a button i want to be able to go to a new page? Currently trying to use location.href...
Printable View
Has anyone ever had to manually direct a page in html for Netscape and if so how did you get it to work? Using VBscript. It's client side code, when I press a button i want to be able to go to a new page? Currently trying to use location.href...
How about this?
PaulCode:<BUTTON onClick="window.navigate('http://whateverurl.com')">Click Me</BUTTON>