terlebih dahulu izin kpd Mods, untuk buat thread ini.. biggrin
kalo rasanya uda pernah disharing ato gk berguna langsung tutup/close aja thread ini... nod
credit :- javascript.com, mametgitu
kode
[quote=bad6089]macam mana nak buat ia jadi add boxx?[/quote]
try this code bro
[spoiler]/*********************************************
FEATURED FRIENDS
*********************************************/
var friend="FEATURED FRIENDS";
var friendcode="<iframe title=\"gblack\" src=\"[b]Url_spinFriendlist.html[/b]\" width=\"260\" height=\"210\" frameborder=\"0\" scrolling=\"no\"></iframe>"+
"<br /><br />";
addBox(friend,friendcode,"custombox_555","right");[/spoiler]
masukkan code tu dalam onload header.
harus diingat untuk add box harus ada onload handler di js kamu
[spoiler]//onload handler
function onProfileLoad() {
//generate code here
}
/*********************************************
ADDBOX FUNCTION
*********************************************/
if (!attachOnLoadHandler(function(){onProfileLoad()})) window.onload = function(){onProfileLoad()};
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("<li>");
}
if(!head) head="";
else head="<h2>"+head+"</h2>";
li.innerHTML="<div id=\""+id+"\" class=\"commonbox "+id+"\">"+
head+
"<div id=\"content_"+id+"\">"+
code+
"</div>"+
"</div>";
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;
}[/spoiler]
klu blom ade masukkan code tu dalam js.