CSS/Jquery How can I display a div directly under button?
- by user342391
I have a button that when hovered displays a div.
How can I postion this div to appear directly under the button when displayed???
<script type="text/javascript">
$(document).ready(function(){
$(".plans").hover(function() {
$("#planssubnav").show("slow");
}, function(){
$("#planssubnav").hide("slow");
});
});
…