onclick open link code example
Example 1: javascript onclick href location
onclick="location.href='unit_01.htm'"
Example 2: onclick url
<button onclick="location.href='logout.php';">logout</button>
Example 3: onclick on anchor tag
<a href='more.php' onclick='show_more_menu()'>More >>></a>
Example 4: onclick open link js
window.open(url);
Example 5: onclick open new url html
<input type="button" value="button name" onclick="window.open('http://www.website.com/page')" />