07-28-2009, 07:50 PM
|
#3 (permalink)
|
|
The Acquainted
Join Date: Jul 2009
Location: Surrey
Posts: 105
Thanks: 1
|
jQuery is really easy. I dont have time to look through your code in details, but as an example...on hovering the div with id submenu, submenu layer will display and on mouse out will be hidden again. Also using animation functions like slideDown & slideUp you can animate the display of the drop down menu
$('#submenu').hover(
function()
{
// show menu
},
function()
{
// hide menu
}
);
|
|
|
|