|
document.addEventListener('DOMContentLoaded', function() {
|
|
var input = document.querySelector('.search-form input');
|
|
if (!input) return;
|
|
input.addEventListener('keydown', function(e) {
|
|
if (e.key === 'Escape') {
|
|
input.value = '';
|
|
input.blur();
|
|
}
|
|
});
|
|
});
|