Senin, 05 Mei 2008

Friendster New Addbox Function


Replaced in your "tracker.js"

Code:

function addBox (type,head,htm,id,sibling) {
//by marfillaster

//type "LEFT" | "RIGHT"
//head header string
//htm innerHTML string
//id css_id string
//sibling css_id_insertbefore string | null
/* Available default Siblings
LEFT
0 = controlpanel
1 = photos
13 = blogs
12 = reviews
6 = moreabout
18 = publiccomments
10 = scrapbook
RIGHT
15 = meettrail
2 = friends
14 = googleads
7 = fan
8 = groups
null - appends to last
*/

try {
var li=document.createElement("li");
} catch(e) {
var li=document.createElement("
  • ");
    }
    if(type=="LEFT") {
    var ul=document.getElementById("0").parentNode.parentNode;
    htm="
    "+htm+"
    ";
    }
    else var ul=document.getElementById("2").parentNode.parentNode;

    li.innerHTML="
    "+
    "

    "+head+"

    "+
    "
    "+
    htm+
    "
    "+
    "
    ";

    if(sibling==null) ul.appendChild(li);
    else {
    sibling=document.getElementById(sibling).parentNode;
    ul.insertBefore(li,sibling);
    }
    }
  • Related Post :



    0 comments:

    R