This is my first post here and I really hope, that someone could help me. I search a lot on internet but I didn't found anything usefull.
Here is my code:
<!DOCTYPE html>
<html>
<head>
<script src="jquery.js"></script>
<script>
$(document).ready(function() {
$('#box').hover(
function () {
$(this).animate({left:"+=180px"}, "fast");
},
function () {
$(this).animate({left:"-=180px"}, "slow");
}
);
});
</script>
</head>
<body>
<div id="box" style="background:#98bf21;height:900px;position: absolute;left:-180px; width:200px;">
<div id="skinDiv">
<select name="skin">
<option value="">[ None ]</option>
<option value="Blue">Blue</option>
<option value="Red">Red</option>
<option value="Green">Green</option>
<option value="White">White</option>
</select>
</div>
</div>
</body>
</html>
I'm working on a web page and I want to have menu in the left which will be animated. When user want to select something from menu he can hover it and menu will came from left side of monitor to specific page e.g. +200px to left. User will have there dropdown, where he could select something from it.
Problem is, that when user focus on this html select element eg on list element parent div lose focus and user can't select anything from dropdown, because dropdown also hides.
I hope that I was clear, if not I will try to explain more.
I hope, that you could help me on problem, because I try to solve this for a days, but with no success.
Regards, Miha