Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jpcontrerasv/1c9e7ff508e75466837c to your computer and use it in GitHub Desktop.
Save jpcontrerasv/1c9e7ff508e75466837c to your computer and use it in GitHub Desktop.
Seleccionar sólo el hijo que tiene las mismas clases repetidas
$(".btn-funciona").click(function(event){
$(this).parent().next(".cover").animate({right:'0'}, 800).addClass("cover-abierto");
});
$(".cerrar-cover").click(function(event){
$(this).closest(".cover").animate({right:'-75%'}, 800).removeClass("cover-abierto");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment