/ Published in: jQuery
Con esto evitamos que un enlace que tengamos con 'href="#"' actue como tal y la pagina haga scroll hasta la parte superior.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
$("a").click(function(){ // para interrumpir y eliminar el comportamiento del enlace, // hacemos que el enlace retorne false. return false; });