Ir al contenido
document.addEventListener('DOMContentLoaded', function() {
var btn = document.querySelector('.jet-search-filter__submit');
var input = document.querySelector('.jet-search-filter__input');
if (btn && input) {
btn.addEventListener('click', function() {
var q = input.value.trim();
if (q.length > 0) { window.location.href = '/?s=' + encodeURIComponent(q); }
});
input.addEventListener('keypress', function(e) {
if (e.key === 'Enter') {
var q = input.value.trim();
if (q.length > 0) { window.location.href = '/?s=' + encodeURIComponent(q); }
}
});
}
});