I am using this (for example)
$('.changeserver').click(function(e)
{
e.preventDefault();
quin = $(this).attr('href');
$('div.caja').css('visibility', 'hidden');
$('#'+quin).css('visibility', 'visible');
$('.jdownloader').css('visibility', 'hidden');
$('#j'+quin).css('visibility', 'visible');
$('#servers li a').css('color', '#666');
$(this).css('color', '#bababa');
});
The url where the users click is www.domain.com/putlocker, as there is the e.preventDefault(); the users doesn't get an error, however, when Google crawls the site, it counts all those likes as 404 links because he doesn't care about the e.preventDefault() as he just reads the code.
How can I fix that?