Skip to content

Instantly share code, notes, and snippets.

@mrfoxtalbot
Last active February 12, 2016 08:22
Show Gist options
  • Save mrfoxtalbot/f7553c0d0ebb4eee8d72 to your computer and use it in GitHub Desktop.
Save mrfoxtalbot/f7553c0d0ebb4eee8d72 to your computer and use it in GitHub Desktop.
Ejemplo de un Toggle encapsulado
jQuery( document ).ready(function($) {
$( "#someid p" ).click(function() {
$( this ).toggleClass( "activo" );
});
;});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment