Posted: 3/7/2010
Hi,
I have an hyperlink <a href="#">Play</a> Now I have binded the click event of this anchor link with jQuery . The issue is that when I click the link the page focus reaches at the top , this is annoying how can i overcome this issue.
Posted: 3/9/2010
Write e.preventDefault(); in clickevent handler
$('#anchorid').click(function(e)
{
//your stuff
e.preventDefault();
});