[quote=nopathz]tadi codenya kan gini yah? :[/quote]
Gitu bukan posisi nya bro nopathz
[quote]function marquee() {
MARQUEE.init();
}
if (typeof MARQUEE == "undefined") { MARQUEE = {}; }
MARQUEE = {
content: [],
init: function() {
//friends
this.content = document.getElementById("content_2").innerHTML;
document.getElementById("content_2").innerHTML = "<marquee direction=\"up\" height=\"300\" scrollamount=\"5\" onMouseOver=\"stop()\" onMouseOut=\"start()\">"+this.content+"</marquee>";
//photos
this.content = document.getElementById("content_1").innerHTML;
document.getElementById("content_1").innerHTML = "<marquee direction=\"Right\" height=\"100%' scrollamount=\"5\" onMouseOver=\"stop()\" onMouseOut=\"start()\">"+this.content+"</marquee>";
}
};
marquee();[/quote]