Link to home
Start Free TrialLog in
Avatar of MarcGraff
MarcGraffFlag for United States of America

asked on

onClick goto another page?

I have a page where I am using onClick event. I want it to go to a web page (like "https://www.experts-exchange.com"). How can I do this???

   Thanks
   - Marc
Avatar of Zvonko
Zvonko
Flag of North Macedonia image

onClick on what? on a button?
ASKER CERTIFIED SOLUTION
Avatar of Zvonko
Zvonko
Flag of North Macedonia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of jaysolomon
jaysolomon

or a link
<a href="http://oldlook.experts-exchange.com" onclick="window.location = this.href; return false;">EE</a>
Avatar of MarcGraff

ASKER

Thanks! I just couldn't get it.

   Thanks again Zvonko
   - Marc
or a whole page
============
<html>
<body onclick="window.location='http://www.experts-exchange.com';">
hurra
</body>
</html>