Give search form focus when it's hovered over
This commit is contained in:
parent
3ef69dd84f
commit
c7031b4933
1 changed files with 5 additions and 0 deletions
|
@ -42,5 +42,10 @@ $(document).ready(function(){
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
|
|
||||||
|
$('.navbar-search-swap').hover(function() {
|
||||||
|
$(this).find('input').focus();
|
||||||
|
});
|
||||||
|
|
||||||
});
|
});
|
||||||
})(jQuery);
|
})(jQuery);
|
||||||
|
|
Loading…
Reference in a new issue