Skip to content

Instantly share code, notes, and snippets.

@xola139
Created September 23, 2014 15:02
Show Gist options
  • Save xola139/ecd97bf0b2e481ef671a to your computer and use it in GitHub Desktop.
Save xola139/ecd97bf0b2e481ef671a to your computer and use it in GitHub Desktop.
visualizar en Hidden un div con jquery
//Dado un id de algun div este se utiliza la propiedad visibility para ocultar
$('#identificador').css('visibility', 'hidden');
//Similar al atributo visibility solo que este deja de utilizar el espacio
$('#identificador').css('display', 'none');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment