I am Creating a CSS hover drop down menu. I have a search icon that has a hover on it also. When you hover over the icon it drops down an input for a search. However when the mouse moves off the area the search box disappears. Looking to keep the box there as long as the cursor is inside the input field, or the input is focused. I may end up just doing a toggle on the search menu icon if that is the best option, but would rather have it work as previously stated, so if you clicked elsewhere on the screen it would disappear.
If you need me to post what I have just let me know, but it's basically just this with a standard pure CSS hover drop-down, this is the basic html setup:
<li class="search">
<ul class="search">
<li><input placeholder="enter search" action=""></li>
So it works but like I stated when you move off, even with the cursor flashing it will hide again. Looking for some way to keep it active. I'm assuming I'll need some sort of JavaScript to make this work, but not sure where to start with that. This is my first post so if I a messing up some sort of protocol, I apologize.
Thanks!