Please find below code for prevent anchor tag onclick
$(document).ready(function()
{
a.click(function(e)
{
e.preventDefault();
});
});
Please find below code for prevent anchor tag onclick
$(document).ready(function()
{
a.click(function(e)
{
e.preventDefault();
});
});