Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Alright, here's a final answer (Sorry it took so long).</p> <p><a href="http://jsfiddle.net/htBPp/6/" rel="nofollow">http://jsfiddle.net/htBPp/6/</a></p> <p>I redesigned my approach, and used the .hover function on the wrapper div (menuSection). This worked perfectly. So, there you are.</p> <p>/* Old stuff, preserved for posterity</p> <p>EDIT- This is the new approach.</p> <p>This is where I'm at so far- it's pretty close. If you go back up to the menu items, it'll hide and then show the menu... you'll have to get clever to solve that.</p> <p><a href="http://jsfiddle.net/htBPp/4/" rel="nofollow">http://jsfiddle.net/htBPp/4/</a></p> <p>EDIT- This is my first shot at the answer.</p> <pre><code>&lt;div class="hoverMenuItem" id="item1"&gt;Menu Item&lt;/div&gt; &lt;div class="hoverMenu" id="menu1" style="display:none; position:absolute;"&gt;&lt;!--menu laid out--&gt;&lt;/div&gt; &lt;script type="text/javascript"&gt; $('.hoverMenuItem').mouseover(function(){ var id=$(this).attr("id"); var itemNum=id.substring(3); $('#menu'+itemNum).slideDown(250); }); $('.hoverMenuItem').mouseout(function(){ var id=$(this).attr("id"); var itemNum=id.substring(3); $('#menu'+itemNum).slideUp(250); }); &lt;/script&gt; </code></pre> <p>Something very similar to this will pretty much do it. You will have to figure out how to avoid triggering the mouseout event when you go onto the menu, though (probably add the menu as a child element of the menu item).</p> <p>EDIT: So, starting from there, this is a quick and dirty fiddle.</p> <p><a href="http://jsfiddle.net/htBPp/" rel="nofollow">http://jsfiddle.net/htBPp/</a></p> <p>Inside the menu, you can setup the layout however you want and line it up with the items above.</p> <p>*/</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload