Advertisement
lightxx

Untitled

Feb 10th, 2012
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function initMenu(){
  2.   var menus, menu, text, a, i;
  3.   menus = getChildrenByElement(document.getElementById("menu"));
  4.   for(i = 0; i < menus.length; i++){
  5.     menu = menus[i];
  6.     text = getFirstChildByText(menu);
  7.     a = document.createElement("a");
  8.     if (text) {
  9.         menu.replaceChild(a, text);
  10.         a.appendChild(text);
  11.     }
  12.     a.href = "#";
  13.     a.onclick = showMenu;
  14.     a.onfocus = function(){this.blur()};
  15.   }
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement