Ejemplo: deshabilitar la etiqueta de anclaje jquery después de hacer clic
$('.btn').on('click', function(e) {
e.preventDefault();
$(this).off("click").attr('href', "javascript: void(0);");
//add .off() if you don't want to trigger any event associated with this link
});
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)