Home › Forums › Basel support forum › mobile search on sticky menu › Reply To: mobile search on sticky menu
May 25, 2022 at 5:05 pm
#378795

Elise Noromit
Member
Hello,
Sorry for the delay.
Please add this snippet to the Theme Settings > Custom JS > On document ready:
jQuery(window).on('baselEventStarted', function() {
var body = baselThemeModule.$body;
jQuery('.mobile-search-icon.search-button').on('click', function(e) {
if (baselThemeModule.windowWidth > 991) {
return;
}
e.preventDefault();
if (!body.hasClass('act-mobile-menu')) {
body.addClass('act-mobile-menu');
jQuery('.mobile-nav .searchform').find('input[type="text"]').focus();
}
});
});
We will fix that in the nearest update.
Best Regards