I'm trying to move an element into another one so a css :hover would work.
<ul> <li id="menu-item"> //move into here </li> </ul> <div class="tomove">...</div> 'tomove' is display:none;
menu-item:hover makes 'tomove' display:block;
I need this to work with css :hover and be moved into a <li> item
$('.tomove').appendTo('#menu-item')$( ".tomove" ).detach().appendTo('#menu-item')