RP_Rave1_theme/assets/js/header-search.js

16 lines
398 B
JavaScript
Raw Normal View History

2024-11-06 10:10:48 +00:00
// Search Form
;(function ($){
'use strict';
$(document).on('ready', function () {
$('.js-search-form-control').on('click', function (e){
$('html, body').addClass('search-active');
$('.input-search').focus();
e.preventDefault();
});
$('.js-search-form-close').on('click', function (e){
$('html, body').removeClass('search-active');
e.preventDefault();
});
});
})(jQuery);