jQuery(document).ready(function($) { if ( localStorage.getItem('maasAd') === 'done' ) { return; } $('#overlay').fadeIn(); // Show the overlay $('#image-hint').fadeIn(); // Show the hint // Close the hint and overlay when the close button is clicked $('#close-hint').on('click', function() { $('#image-hint').fadeOut(); $('#overlay').fadeOut(); localStorage.setItem('maasAd', 'done'); teleworkerTour(); startIntroJs(); }); // Close the hint and overlay when the ESC key is pressed $(document).on('keydown', function(event) { if (event.key === "Escape" || event.keyCode === 27) { // "Escape" is for modern browsers $('#image-hint').fadeOut(); $('#overlay').fadeOut(); localStorage.setItem('maasAd', 'done'); teleworkerTour(); } }); });