Eliminar comportamiento enlace


/ Published in: jQuery
Save to your folder(s)

Con esto evitamos que un enlace que tengamos con 'href="#"' actue como tal y la pagina haga scroll hasta la parte superior.


Copy this code and paste it in your HTML
  1. $("a").click(function(){
  2. // para interrumpir y eliminar el comportamiento del enlace,
  3. // hacemos que el enlace retorne false.
  4. return false;
  5. });

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.