Who is online? 189 guests and 0 members
Member login | Become a member
Posted: 3/7/2010 1:19:45 PM
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 8:31:43 PM
Write e.preventDefault(); in clickevent handler
$('#anchorid').click(function(e)
{
//your stuff
e.preventDefault();
});