onclick href code example
Example 1: javascript onclick href location
onclick="location.href='unit_01.htm'"
Example 2: html button link
<button><a href='https://google.com' alt='Broken Link'>This is a button</a></button>
Example 3: onclick href
onclick="location.href='http://www.hyperlinkcode.com/button-links.php'"
Example 4: onclick a tag
<a href='http://www.google.com' onclick='return check()'>check</a>
<script type='text/javascript'>
function check() {
return false;
}
</script>
Example 5: html button click url
# Wrap whole button in a 'a' tag.
<a href="https://google.com" class="button"><button class="pixel">Button text</button></a>