Guest User

Untitled

a guest
Oct 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. $(document).ready(function exp(){
  2. if (window.innerWidth <= 576) {
  3. $('.Onf').on('click', function () {
  4. $('.Onf').fadeOut(100);
  5. $('.nav-burger').css('background-image', 'url("img/icon-menu.svg")', 'no-repeat');
  6. });
  7. }
  8. });
  9.  
  10. $(window).on("load resize",function(){
  11. if (window.innerWidth <= 576) {
  12. $('.Onf').on('click', function () {
  13. $('.Onf').fadeOut(100);
  14. $('.nav-burger').css('background-image', 'url("img/icon-menu.svg")', 'no-repeat');
  15. });
  16. }
  17. });
Add Comment
Please, Sign In to add comment