Thursday, July 15, 2010

jQuery Drop-Down Menu :: Free Download

0 comments

Now you can create the main menu structure to HTML unordered list. Use an unordered list for navigation is a very good practice. First, semantically correct, it is also useful for the transition / special issue on the campus of the tree cases.

Jquery Script ::

Jquery Script

var timeout = 500;
var closetimer = 0;
var ddmenuitem = 0;

function jsddm_open()
{ jsddm_canceltimer();
jsddm_close();
ddmenuitem = $(this).find('ul').css('visibility', 'visible');}

function jsddm_close()
{ if(ddmenuitem) ddmenuitem.css('visibility', 'hidden');}

function jsddm_timer()
{ closetimer = window.setTimeout(jsddm_close, timeout);}

function jsddm_canceltimer()
{ if(closetimer)
{ window.clearTimeout(closetimer);
closetimer = null;}}

$(document).ready(function()
{ $('#jsddm > li').bind('mouseover', jsddm_open)
$('#jsddm > li').bind('mouseout', jsddm_timer)});

document.onclick = jsddm_close;

Demo : Live Demo

Source : Free Download


0 comments:

Post a Comment