Parent Directory
|
Revision Log
|
Revision Graph
Initial Release for Drupal 5.0
| 1 | sfHover = function() { |
| 2 | var sfEls = document.getElementById("suckerfishmenu").getElementsByTagName("LI"); |
| 3 | for (var i=0; i<sfEls.length; i++) { |
| 4 | sfEls[i].onmouseover=function() { |
| 5 | this.className+=" sfhover"; |
| 6 | } |
| 7 | sfEls[i].onmouseout=function() { |
| 8 | this.className=this.className.replace(new RegExp(" sfhover\\b"), ""); |
| 9 | } |
| 10 | } |
| 11 | } |
| 12 | if (window.attachEvent) window.attachEvent("onload", sfHover); |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |