Re: [align=justify][b]bagi member yang ingin bertanya seputar tweaking FS,
silahkan bertanya dan posting disini,
tapi jangan lupa,,sebelum itu tolong [url=http://theftalk.com/t2744-%5BImportant%5D-
^
ouh.
itu sama broth.
bisa di bilang, ini script utama nya.
[spoiler]
function show_hide(the_box) {
if (document.getElementById(the_box)) {
if (document.getElementById(the_box).style.display == 'none') {
document.getElementById(the_box).style.display = 'block';
}
else {
document.getElementById(the_box).style.display = 'none';
}
}
}
[/spoiler]
bagian itu ga nyambung ama comment nya.
jadi klo mu buat yg di addBox.
ganti bagian addBox nya dgn yg di bawah ini
[spoiler]
// FRIENDS
addBox("LEFT","<a href=\"#\" onClick=\"show_hide('content_box1'); return false\"><div>ZEROCOOL FRENDS</div></a>",box1,"box1","2");
show_hide('content_box1');
// CLOCK
addBox("LEFT","<a href=\"#\" onClick=\"show_hide('content_box4'); return false\"><div>Clock</div></a>",box4,"box4","2");
show_hide('content_box4');
[/spoiler]