bhuat tombol navigasi sendiri untuk fs,,,......

nah buat kalian yang pingin tau bagai mna cara buat navigasi kalian sendiri.... ni saya berikan caranya.....

copy code dibawah ini :

function addBox2 (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);
}
}

var web = new Array();
web[0]="<a href='http://yahoo.co.id'><input type='button' value='yahoo'></a>&nbsp;";
web[1]="<a href='http://google.co.id'><input type='button' value='google'></a>&nbsp;";
web[2]="<a href='http://www.gotika-boy.co.cc'><input type='button' value='jay blog'></a>&nbsp;";
web[3]="<a href='http://www.naruto-shippuden.co.cc'><input type='button' value='naruto'></a>&nbsp;";

var navi= "<center>";

for(var i=0;i<web.length;i++)
{
navi += web[i];
}
navi += "</center>";

addBox2 ("LEFT","Navigasi",navi,"commonbox","0")

copy code diatas ke notepad

nach kalau dach dicopy...

ganti tulisan merahnya dengan alamat navigasi kalian....... simpan nengan format file ".js" contoh : contoh.js

trus kalian upload ke file hosting kalian....

lalu linkerkan file trsebut ke fs kalian....

Category:  
You can follow any responses to this entry through the RSS 2.0 feed. You can leave a response.
0 Responses
Leave a Reply