Hi fellow programmer
I have an achor like this
<a href='#' onclick='return showform(this)'>click me</a>
But I want to be able to override the onclick function, how to do this in jquery?
because it seems when I add
$('a').click( function() { alert('hi there!'); } );
the new click handler is not overriding the old one