<a class='google' href="www.google.com>google</a>
says I can't change the above markup but I want to disable the hyperlink, I do this
$('.google').click(function(){
return false;
windows.open('www.gmail.com');
});
I expect after return false my code will work but it doesn't, why?