Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function initMenu(){
- var menus, menu, text, a, i;
- menus = getChildrenByElement(document.getElementById("menu"));
- for(i = 0; i < menus.length; i++){
- menu = menus[i];
- text = getFirstChildByText(menu);
- a = document.createElement("a");
- if (text) {
- menu.replaceChild(a, text);
- a.appendChild(text);
- }
- a.href = "#";
- a.onclick = showMenu;
- a.onfocus = function(){this.blur()};
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement