Navigation Dropdown
Page 1 of 1
Navigation Dropdown
- Spoiler:
- function addBox(head,code,id,siblingafter) { /* head: html string title null - no header bar code: html string content id: unique string css pointer siblingafter: regexp classname 'left' - mainbar column end 'right' - sidebar column end */ try { var li=document.createElement("li"); } catch(e) { var li=document.createElement("
- "); } if(!head) head=""; else head="
"+head+"
"; li.innerHTML=""+ head+ ""; if(siblingafter=="left") getElementsByClass(/commonbox[\s]*?controlpanel/i,null,"DIV")[0].parentNode.parentNode.appendChild(li); else if(siblingafter=="right") getElementsByClass(/commonbox[\s]*?friends/i,null,"DIV")[0].parentNode.parentNode.appendChild(li); else { var si=getElementsByClass(siblingafter,null,"DIV")[0]; si.parentNode.parentNode.insertBefore(li,si.parentNode); } } function getElementsByClass(searchClass,node,tag) { var classElements = new Array(); if ( node == null ) node = document; if ( tag == null ) tag = '*'; var els = node.getElementsByTagName(tag); var elsLen = els.length; var pattern = new RegExp(searchClass); for (i = 0, j = 0; i < elsLen; i++) { if ( pattern.test(els[i].className) ) { classElements[j] = els[i]; j++; } } return classElements; } var header=""; var code=""+ code+ ""+ ""; addBox(header,code,"custombox_821",/commonbox[\s]*?controlpanel/i);
- "); } if(!head) head=""; else head="
Just paste it on your External JS
Tip for advance user's you can edit the codes that's all
Similar topics
» NAVIGATION TOP OF YOUR MAIN BOX
» Navigation Above Shoutout
» Customize The Background of Main Navigation
» Viewers Primary photo And Viewers Navigation
» Navigation Above Shoutout
» Customize The Background of Main Navigation
» Viewers Primary photo And Viewers Navigation
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum