Skip to content

Instantly share code, notes, and snippets.

@Scretch-1
Last active February 26, 2016 10:47
Show Gist options
  • Save Scretch-1/b0168833cd535ac97326 to your computer and use it in GitHub Desktop.
Save Scretch-1/b0168833cd535ac97326 to your computer and use it in GitHub Desktop.
JS Добавление элементу класса при клике на другой элемент
// Добавление элементу класса или ид при клике на другой элемент
// Документация http://codepen.io/michaelkaeser/pen/yAKvn
$(document).ready(function() {
$('.toggle').on('click',function(){
$('.fades').toggleClass('one');
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment