javascript anchor onclick code example
Example 1: onclick a tag
<a href='http://www.google.com' onclick='return check()'>check</a>
<script type='text/javascript'>
function check() {
return false;
}
</script>
Example 2: onclick on anchor tag
<a href='more.php' onclick='show_more_menu()'>More >>></a>
Example 3: a tag onclick
<a href="javascript:show_more_menu();">More >>></a>
Example 4: js click anchor
// Simulating click after 3 seconds
setTimeout(function(){
document.getElementById('fooLinkID').click();
}, 3 * 1000);