Server IP : 162.214.80.37 / Your IP : 216.73.216.83 Web Server : Apache System : Linux sh013.webhostingservices.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 User : imyrqtmy ( 2189) PHP Version : 8.2.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home2/imyrqtmy/public_html/hotelnirvanasuites/js/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
/*jshint browser: true, strict: true, undef: true */ /*global define: false */ (function() { "use strict"; var bodyEl = document.body, content = document.querySelector( '.content-wrap' ), openbtn = document.getElementById( 'open-button' ), closebtn = document.getElementById( 'close-button' ), isOpen = false; function init() { initEvents(); } function initEvents() { openbtn.addEventListener( 'click', toggleMenu ); if( closebtn ) { closebtn.addEventListener( 'click', toggleMenu ); } // close the menu element if the target it´s not the menu element or one of its descendants.. content.addEventListener( 'click', function(ev) { var target = ev.target; if( isOpen && target !== openbtn ) { toggleMenu(); } } ); } function toggleMenu() { if( isOpen ) { classie.remove( bodyEl, 'show-menu' ); } else { classie.add( bodyEl, 'show-menu' ); } isOpen = !isOpen; } init(); })();