Hi I was wondering if anyone know how to keep the screen in a static position with jquery when a link which has a "#" href is clicked?
Regards,
Phil
Hi I was wondering if anyone know how to keep the screen in a static position with jquery when a link which has a "#" href is clicked?
Regards,
Phil
$('a').click(function(e) {
e.preventDefault();
// OR:
return false;
});