google maps - Exclude div from jQuery hover -
as can see on following site, have div containing google maps searchbox. have set jquery hover functions on div show/hide it. hover , searchbox works when select autocomplete result, hover function on parent div thinks moved mouse out.
site : http://81.64.185.202/new/
do have idea how resolve problem ?
thanks
set code
$( "panel" ).hover(function() { $( ).animate({"width": 500}) }, function() { $( ).animate({"width": 50}); } );
Comments
Post a Comment