Skip to content

Instantly share code, notes, and snippets.

@Prroffessorr
Last active March 4, 2019 19:54
Show Gist options
  • Save Prroffessorr/d3b425aab3a3327f9f29899ec46a20a6 to your computer and use it in GitHub Desktop.
Save Prroffessorr/d3b425aab3a3327f9f29899ec46a20a6 to your computer and use it in GitHub Desktop.
Блок для выполнения кода на jQuery только после полной загрузки станицы
$( document ).ready(function() {
/*Your code must be here
it's exept intresting situation what happens with jQuery*/
});
$('.menu-btn').on('click',function(e){
e.preventDefautl();
$(this).toggleClass('menu-btn-active');
$('.menu').toggleClass('.menu-active');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment