Give search form focus when it's hovered over

This commit is contained in:
benjamin melançon 2018-12-25 23:24:44 -05:00
parent 3ef69dd84f
commit c7031b4933

View file

@ -42,5 +42,10 @@ $(document).ready(function(){
}
]
});
$('.navbar-search-swap').hover(function() {
$(this).find('input').focus();
});
});
})(jQuery);