Created
October 2, 2016 11:17
-
-
Save 0632347878/bea94a0e095639e35d4f1204019a742b to your computer and use it in GitHub Desktop.
при клике на globe мы обращаемся к icons и показываем их при повторном клике- скрываем
This file contains 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
$(function(){ | |
$('.globe').on('click', function(){ <!--при клике на globe мы обращаемся к icons и показываем их при повторном клике- скрываем--> | |
$('.icons').slideToggle(); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment