RP_Rave1_theme/assets/js/header-search.js
Virág Gábor 4664ef511d upload
2024-11-06 11:10:48 +01:00

16 lines
No EOL
398 B
JavaScript

// 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);