Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save vanya2h/3235ca8edbc289c6f6d9 to your computer and use it in GitHub Desktop.
Save vanya2h/3235ca8edbc289c6f6d9 to your computer and use it in GitHub Desktop.
Открываем нужное по клику
$( "Элемент на который кликаем" ).click(function( event ) {
event.preventDefault();
$( this ).hide(300);
$("Элемент, который надо показать").show(300);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment