Created
December 5, 2015 14:31
-
-
Save vanya2h/3235ca8edbc289c6f6d9 to your computer and use it in GitHub Desktop.
Открываем нужное по клику
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$( "Элемент на который кликаем" ).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