Here are my functions:
function dropmenu() {
$(".dropdownitem").show('slow');
}
function hidemenu() {
$(".dropdownitem").hide('slow');
}
And here is my drop-down menu:
<div id="dropdown" class="ns" onmouseover="dropmenu()" onmouseout="hidemenu()">
<p id="dropper">Shortcut Menu</p>
<p class="dropdownitem">Shortcut menu item</p>
<p class="dropdownitem">Something</p>
<p class="dropdownitem">Seomthing else</p>
<p class="dropdownitem">Test menu item</p>
<p class="dropdownitem">More testing</p>
<p class="dropdownitem">Stuff</p>
<p class="dropdownitem">More stuff</p>
</div>
The problem is that when I mouse over and out of the Shortcut Menu, it keeps going up and down and up and down and up and down and….
What is the problem?
stop