Guest User

Untitled

a guest
Jun 2nd, 2016
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. sfHover = function() {
  2. var sfEls = document.getElementById("menu").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);
Add Comment
Please, Sign In to add comment