14 lines
447 B
JavaScript
14 lines
447 B
JavaScript
// offcanvas-search-top
|
|
$(function() {
|
|
var myOffcanvas = document.getElementById('offcanvas-search-top')
|
|
myOffcanvas.addEventListener('shown.bs.offcanvas', function () {
|
|
$('#offcanvas-search-top input').focus();
|
|
$('#offcanvas-search-top input').keydown(function (e) {
|
|
if (e.keyCode == 13) {
|
|
if ($(this).val() != '') {
|
|
location.href = 'products/search?keyword=' + $(this).val();
|
|
}
|
|
}
|
|
})
|
|
})
|
|
}); |