Skip to content

Instantly share code, notes, and snippets.

@maxwellnewage
Created January 14, 2013 14:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxwellnewage/4530344 to your computer and use it in GitHub Desktop.
Save maxwellnewage/4530344 to your computer and use it in GitHub Desktop.
oculta y muestra el campo texto con un boton
$().ready(function(){
$("#mostrar").click(function(e){
$("#textbox").show();
});
$("#ocultar").click(function(e){
$("#textbox").hide();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment