PHP Classes

File: doc/js/menu.js

Recommend this page to a friend!
  Classes of Shannon Wynter   PHP Minecraft Query   doc/js/menu.js   Download  
File: doc/js/menu.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP Minecraft Query
Query the status of Minecraft game players
Author: By
Last change: Update of doc/js/menu.js
Date: 2 months ago
Size: 671 bytes
 

Contents

Class file image Download
var timeout = 500; var closetimer = 0; var ddmenuitem = 0; function menu_open() { menu_canceltimer(); menu_close(); ddmenuitem = $(this).find('ul').css('visibility', 'visible'); } function menu_close() { if (ddmenuitem) ddmenuitem.css('visibility', 'hidden'); } function menu_timer() { closetimer = window.setTimeout(menu_close, timeout); } function menu_canceltimer() { if (closetimer) { window.clearTimeout(closetimer); closetimer = null; } } $(document).ready(function() { $('#file-nav > li').bind('mouseover', menu_open); $('#file-nav > li').bind('mouseout', menu_timer); }); document.onclick = menu_close;