PHP Classes

File: htdocs/modules/system/themes/default/js/formenu.js

Recommend this page to a friend!
  Classes of Michael Beck   Xoops 2.5   htdocs/modules/system/themes/default/js/formenu.js   Download  
File: htdocs/modules/system/themes/default/js/formenu.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Xoops 2.5
Modular content management publication system
Author: By
Last change:
Date: 7 years ago
Size: 728 bytes
 

Contents

Class file image Download
startList = function() { if (document.all&&document.getElementById) { navRoot = document.getElementById("nav"); if (navRoot) for (i=0; i<navRoot.childNodes.length; i++) { node = navRoot.childNodes[i]; if (node.nodeName=="li") { node.onmouseover=function() { this.className+=" over"; } node.onmouseout=function() { this.className=this.className.replace(" over", ""); } } } } } xoopsOnloadEvent(startList);