Last edited by kiddy (2008-07-04 21:16:57)
Last edited by kiddy (2008-07-04 21:39:59)
Last edited by kiddy (2008-07-04 21:45:18)
//BAGIAN A
//onload handler
function onProfileLoad() {
//addboxes here
//BAGIAN B
}
if (!attachOnLoadHandler(function(){onProfileLoad()})) window.onload = function(){onProfileLoad()};
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("<li>");
}
if(type=="LEFT") {
var ul=document.getElementById("0").parentNode.parentNode;
htm="<div class='boxcontent'>"+htm+"</div>";
}
else var ul=document.getElementById("2").parentNode.parentNode;
li.innerHTML="<div id='"+id+"' class='commonbox "+id+"'>"+
"<h2>"+head+"</h2>"+
"<div id='content_"+id+"'>"+
htm+
"</div>"+
"</div>";
if(sibling==null) ul.appendChild(li);
else {
sibling=document.getElementById(sibling).parentNode;
ul.insertBefore(li,sibling);
}
}
//BAGIAN C
Last edited by kiddy (2008-07-04 21:55:00)

Last edited by kiddy (2008-07-04 22:00:58)
tp good dah bantu
>>toinkz101
trust to kiddy
he can help your to tweak your fs
Last edited by EbengMaya (2008-07-04 22:05:18)
tp good dah bantu[/quote]
sama tuh aku kaget aku kira salah mencet nih=|
tapi emank mantab deh orang Indonesia jago" edit FS ya:thumbsup:
>>toinkz101
trust to kiddy
he can help your to tweak your fs
tnx also!
Last edited by toinkz101 (2008-07-04 22:10:03)
Last edited by kiddy (2008-07-04 22:16:33)