Advertisement
GochiSiyan

another JS

May 11th, 2021
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. (function(){
  2. show_menu = function (e) {
  3. e.preventDefault()
  4. $('body').toggleClass('jeg_show_menu')
  5. }
  6. hide_menu = function (e) {
  7. e.preventDefault()
  8. $('body').removeClass('jeg_show_menu')
  9. }
  10. $('.jeg_mobile_toggle').off('click', show_menu).on('click', show_menu);
  11. $('.jeg_menu_close').off('click', hide_menu).on('click', hide_menu);
  12. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement