Hello, I'm trying to do something that I dont know how to do, but I know can be done. There are 2 divs, they both expand the full width of the browser window, they are both 450px in height. So basically 1 block on top of the other. I want to put a div in between these two, that gets revealed from hovering over something in the top Div(button or whatever). The hover item will be at the bottom of the top div.
But I need the middle div to remain active while its contents are being hovered... over.
What would the jquery look like? This is what I have so far.
<script type="text/javascript">
$(document).ready(function() {
$("#toggleh1").hover(function() {
$(".header2").slideDown(400);
}, function() {
$(".header2").slideUp(400);
});
});
</script>
Thanks