
ne js ku... :norose:
http://h1.ripway.com/soniix/step.js
tolong di check dunk....
<">malah ga jalan yg laen....
all..
Leh minta code/script FOTO Pengunjung FS..??
Yg di taro di Who I Want to Meet..
Mohon bantuanx...[/quote]
ini buat JSnya taburin d bagian C atau paling bawah JS kau
[spoiler]/**
* Viewer's Main Photo at WIWTM
* Copyright 2007-2008 by FeRuZZ � http://profiles.friendster.com/feruzz
* Internalize AJAX handler
* No warranty expressed or implied. Use at your own risk.
**/
/*global VIEWERPIC*/
(function () {
VIEWERPIC = {
// private property
photo: null,
init: function () {
if (pageViewerID !== "") {
try {
VIEWERPIC.ajaxRequest("GET", "http://" + location.hostname + "/" + pageViewerID, true, null, VIEWERPIC.viewer, null);
} catch (e) {}
}
},
viewer: function (htm) {
if (htm.replace(/^\s*|\s*$/g, "") === "") {
window.alert("ERROR: Empty xmlresponse! \n Unable to parse your details!");
return;
} else {
htm = htm.slice(htm.indexOf("<div class=\"imgblock200\">") + 0, htm.indexOf("<ul id=\"controlPanelButtons\">") + 0);
htm = htm.slice(htm.indexOf("<img src=\"") + 10, htm.indexOf("\"></a></div>") + 0);
VIEWERPIC.photo = document.createElement("div");
VIEWERPIC.photo.id = "viewerphoto";
VIEWERPIC.photo.align = "center";
VIEWERPIC.photo.appendChild(document.createElement("a"));
VIEWERPIC.photo.getElementsByTagName("a")[0].href = "/" + pageViewerID;
VIEWERPIC.photo.getElementsByTagName("a")[0].target = "_blank";
VIEWERPIC.photo.getElementsByTagName("a")[0].title = pageViewerFName;
VIEWERPIC.photo.getElementsByTagName("a")[0].appendChild(document.createElement("img"));
VIEWERPIC.photo.getElementsByTagName("img")[0].src = htm;
VIEWERPIC.photo.appendChild(document.createElement("br"));
VIEWERPIC.photo.appendChild(document.createElement("span"));
VIEWERPIC.photo.getElementsByTagName("span")[0].className = "q";
VIEWERPIC.photo.getElementsByTagName("span")[0].appendChild(document.createElement("a"));
VIEWERPIC.photo.getElementsByTagName("a")[1].href = "/" + pageViewerID;
VIEWERPIC.photo.getElementsByTagName("a")[1].target = "_blank";
VIEWERPIC.photo.getElementsByTagName("a")[1].title = pageViewerFName;
VIEWERPIC.photo.getElementsByTagName("a")[1].innerHTML = pageViewerFName;
document.getElementById("viewerpic").parentNode.replaceChild(VIEWERPIC.photo, document.getElementById("viewerpic"));
}
},
ajaxRequest: function (type, url, async, param, func, handlerparam) {
/**
* ajaxRequest - You may not remove or change this notice.
* version: 2.4
* Copyright 2008 by FeRuZZ � http://profiles.friendster.com/feruzz.
*
* @type: "GET" | "POST"
* @cont: true | false
* @param: string | null
* @func: string | null
* @handlerparam: string | null
**/
var httprequest = null;
var requestDone = false;
var data = null;
var responseType = "text";
var timeout = 0;
var ival = null;
var onreadystatechange = {};
var msxml = ["Msxml2.XMLHTTP.6.0", "Msxml2.XMLHTTP.3.0", "Msxml2.XMLHTTP", "Microsoft.XMLHTTP"];
for (var x = 0, len = msxml.length; x < len; x += 1) {
try {
httprequest = window.ActiveXObject ? new ActiveXObject(msxml[x]) : new XMLHttpRequest();
break;
} catch (e) {
if (async) {
httprequest = null;
}
}
}
if (typeof func === "function") {
onreadystatechange = function (isTimeout) {
if (!requestDone && httprequest && (httprequest.readyState === 4 || isTimeout === "timeout")) {
requestDone = true;
if (ival) {
window.clearInterval(ival);
ival = null;
}
if (!httprequest.status && location.protocol === "file:" || (httprequest.status >= 200 && httprequest.status < 300) || httprequest.status === 304 || httprequest.status === 1223) {
var resPonse = (/xml/i.test(responseType))? httprequest.responseXML : httprequest.responseText;
func(resPonse.replace(new RegExp("<script[^>]*>.*?<\/script>", "gi"), ""), handlerparam);
}
}
};
}
if (async) {
ival = window.setInterval(onreadystatechange, 13);
if (timeout > 0) {
window.setTimeout(function () {
if (httprequest) {
httprequest.abort();
if (!requestDone) {
onreadystatechange("timeout");
}
}
}, timeout);
}
}
if (type === "GET" && (/GET/i.test(type))) {
var ts = new Date().getTime();
var ret = url.replace(/(\?|&)_=[\S\s]*?(&|$)/, "$1_=" + ts + "$2");
url = ret + ((ret === url) ? (url.match(/\?/) ? "&" : "?") + "_=" + ts : "");
}
if (data && type === "GET" && (/GET/i.test(type))) {
url += (url.match(/\?/) ? "&" : "?") + data;
data = null;
}
if (type === "POST" && (/POST/i.test(type))) {
var headers = "application/x-www-form-urlencoded" + ("UTF-8" ? "; charset=" + "UTF-8" : "");
var contentLength = param ? param.length: 0;
try {
httprequest.setRequestHeader("Content-type", headers);
httprequest.setRequestHeader("Content-length", contentLength);
if (httprequest.overrideMimeType && (navigator.userAgent.match(/Gecko\/(\d{4})/) || [0, 2005])[1] < 2005) {
httprequest.setRequestHeader("Connection", "close");
}
} catch (err) {}
}
httprequest.open(type, url, async);
httprequest.setRequestHeader("ajaxRequest", "true");
httprequest.setRequestHeader("X-Requested-With", "XMLHttpRequest");
httprequest.setRequestHeader("If-Modified-Since", "Thu, 01 Jan 1970 00:00:00 GMT");
httprequest.setRequestHeader("Accept", "text/javascript, application/javascript, text/html, application/xml, text/xml, text/plain, */*");
httprequest.send(param);
if (!async) {
onreadystatechange();
}
}
};
})();
VIEWERPIC.init();
[/spoiler]
dan yg ini taburin d CSS kau
[spoiler]#viewerphoto img {
height: 100px;
width: 100px;
border: 2px #97B6CA solid;
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=50);
-moz-border-radius: 10px;
-moz-opacity: 0.5;
-khtml-opacity: 0.5;
opacity: 0.5;
}
#viewerphoto a:hover img {
filter:progid:DXImageTransform.Microsoft.Alpha(opacity=100);
-moz-border-radius: 10px;
-moz-opacity: 1.0;
-khtml-opacity: 1.0;
opacity: 1.0;
}[/spoiler]
terakhir yg ini masukin k kotak who i want to meet kau
[quote]<div id='viewerpic'></div>[/quote]
[b]@ boim[/b]
coba gini mas
<">
[/quote]
Naruhnya keliru bro
Taruh dibagian B
[spoiler]function onProfileLoad() {
tombol_comment=document.getElementById("content_18").getElementsByTagName("div")[0];
tombol_comment.style.textAlign="center";
tombol_comment.innerHTML=" ";
for (i=0;i<10;i++) {
fotosrc=document.getElementById("18").getElementsByTagName("td")[2*i].getElementsByTagName("div")[0].getElementsByTagName("img")[0].getAttribute("src");
tglPost=document.getElementById("content_18").getElementsByTagName("ul")[0+1*i].getElementsByTagName("li")[1].innerHTML;
komensrc=document.getElementById("content_18").getElementsByTagName("ul")[0+1*i].getElementsByTagName("li")[2].innerHTML;
ulcomment=document.getElementById("18").getElementsByTagName("td")[2*i+1].getElementsByTagName("ul")[0];
linkcommentor=ulcomment.getElementsByTagName("li")[0].getElementsByTagName("a")[0];
commentorName=linkcommentor.innerHTML.replace(/"/g,"").replace(/'/g,"");
commentorHref=linkcommentor.getAttribute("href");
tombol_comment.innerHTML+="<span style='padding-left:5px;'><a href='"+commentorHref+"'><img src=\"http://h1.ripway.com/soniix/Blackkelap.gif\" height=\"35px\" width=\"35px\" class=\"imgblock75\" title=\"header=[<img src='"+fotosrc+"' style='width:164px;border:2px solid #990000;'><br><br>"+commentorName+"<br>] body=["+tglPost.replace(/"/g,'')+"<br>"+komensrc.replace(/"/g,'').replace(/([*\[]|[*\]])/g,'*')+"]\"></a></span>";
divcomment=document.getElementById("content_18").getElementsByTagName("div")[2*i+1];
divcomment.style.display="none";
fototd=document.getElementById("18").getElementsByTagName("td")[2*i];
fototd.style.display="none";
}
[b]// TARUH DISINI [/b]
addBox(pageOwnerFName+"'s Visitors",TRACKER.div.innerHTML,"tracker","right");
[b]// ATAU DISINI [/b]
}
[/spoiler]
Yg flash banner nya jg masukin dibagian B
Codenya jg blom dikasih addbox tuhh
[quote=excelcior]setiap g masukin ne code
[/quote]
Bro udah punya onload handler blom ???
Kalo udah ada gak usah dicopy lagi
Last edited by strezzpc (2008-07-02 12:27:57)
<">malah nda jalan semua na...
mau itu pake yg tool tip ato yg laen...
asalkan pake kode yg di atas lgs nda jalan semuana....
Last edited by excelcior (2008-07-02 12:32:10)
thx yee bantuannya...
cabut dolo yawww
segera menuju TKP
[/quote]
Walah bro, saya kok jd bingung ya
Pokoknya kalo bro udah punya onload handler yg begini :
[quote]function onProfileLoad() {
}[/quote]
Bro [b]gak perlu[/b] copy lagi onload handlernya
Coba deh share jsnya
===
[i]Waduh cabut orangnya[/i]
Last edited by strezzpc (2008-07-02 12:40:04)
http://theftalk.com/t8106-%7BTUTORIAL%7D-Magic-Code-Untuk-CSS-Extension-%28for-newbie%29.html
Last edited by _indra_kurniawan_13 (2008-07-02 12:47:00)
[b]@ bintangkesiangan[/b]
okeh mas d coba dulu
ntar kalo ada apa� balik lagi
[quote=screamoa7x]allow balik gi nih....kaka minta css u/ welcome n goodbye alert donk[/quote]
[li]ini welcome alertnya[/li]
<">[li]ini goodbye alertnya[/li]
<">[li]ini no right clicknya [/li]
[spoiler]body {right:expr/**/ession(function shake(){if (event.button==2){
self.resizeTo(960,700)
self.moveBy(15,17)
self.moveBy(-13,-17)
self.moveBy(13,19)
self.moveBy(-14,-16)
self.moveBy(14,23)
self.moveBy(-25,-20)
self.moveBy(24,22)
self.moveBy(-20,-17)
self.moveBy(24,16)
self.moveBy(-13,-20)
self.moveBy(20,20)
self.moveBy(-26,-27)
self.moveBy(15,17)
self.moveBy(-13,-17)
self.moveBy(13,19)
self.moveBy(-14,-16)
self.moveBy(14,23)
self.moveBy(-25,-20)
self.moveBy(24,22)
self.moveBy(-20,-17)
self.moveBy(24,16)
self.moveBy(-13,-20)
self.moveBy(20,20)
self.moveBy(-26,-27)
self.moveBy(15,17)
self.moveBy(-13,-17)
self.moveBy(13,19)
self.moveBy(-14,-16)
self.moveBy(14,23)
self.moveBy(-25,-20)
self.moveBy(24,22)
self.moveBy(-20,-17)
self.moveBy(24,16)
self.moveBy(-13,-20)
self.moveBy(20,20)
self.moveBy(-26,-27)
self.moveBy(15,17)
self.moveBy(-13,-17)
self.moveBy(13,19)
self.moveBy(-14,-16)
self.moveBy(14,23)
self.moveBy(-25,-20)
self.moveBy(24,22)
self.moveBy(14,23)
self.moveBy(-25,-20)
self.moveBy(24,22)
self.moveBy(-20,-17)
self.moveBy(24,16)
self.moveBy(-13,-20)
self.moveBy(20,20)
self.moveBy(-26,-27)
self.moveBy(15,17)
self.moveBy(-13,-17)
self.moveBy(13,19)
self.moveBy(-14,-16)
self.moveBy(14,23)
self.moveBy(-25,-20)
self.moveBy(24,22)
self.moveBy(-20,-17)
self.moveBy(24,16)
self.moveBy(-13,-20)
self.moveBy(20,20)
self.moveBy(-26,-27)
self.moveBy(15,17)
self.moveBy(-13,-17)
self.moveBy(13,19)
self.moveBy(-14,-16)
self.moveBy(14,23)
self.moveBy(-25,-20)
self.moveBy(24,22)
self.moveBy(-20,-17)
self.moveBy(24,16)
self.moveBy(-13,-20)
self.moveBy(20,20)
self.moveBy(-26,-27)
self.moveBy(15,17)
self.moveBy(-13,-17)
self.moveBy(13,19)
self.moveBy(-14,-16)
self.moveBy(14,23)
self.moveBy(-25,-20)
self.moveBy(24,22)
self.moveBy(-20,-17)
self.moveBy(-13,-20)
self.moveBy(20,20)
self.moveBy(-26,-27)
self.moveBy(28,17)
self.moveBy(0, 0)
alert(" [color=green]Please deh ahh[/color] ");
alert(" [color=green]Jangan donk ahh[/color] ");
alert(" [color=green]iiihh!!jangan ahh[/color] ");
alert(" [color=green]iihh!!mo ngapain seh[/color] ");
alert(" [color=green]Mau tau script aku tah ^_^[/color] ");
alert(" [color=green]ntar doloo[/color] ");
alert(" [color=green]Abisin ini doloo[/color] ");
alert(" [color=green]Maap...kalo ngerepotin[/color] ");
alert(" [color=green]Gapapa khan ^_^[/color] ");
alert(" [color=green]Udah cape lum??[/color] ");
alert(" [color=green]ntar bentar lagi yah...[/color] ");
alert(" [color=green]Bentaaarr ajah..[/color] ");
alert(" [color=green]Boleh kan...[/color] ");
alert(" [color=green]Sabar yahh[/color] ");
alert(" [color=green]Neh udah neh[/color] ");
alert(" [color=green]Kalo mau liat scriptku liat dari page source[/color] ");
alert(" [color=green]Jangan klik kanan ahh..PAMALI!! ok broth..[/color] ");}}
document.onmousedown=shake);}[/spoiler]
selengkapnya cari di [url=http://theftalk.com/p163144.html]SINI[/url]
Last edited by Co_don SanAdH (2008-07-02 12:55:52)
screamoa7x..
Negh WELCOME ALERTx <">Negh Good Bye ALERTx <">sLipin Di Css Kmu..
ak masii baruu masukk FTI , ak masii bingungg bwadd ngeditt" fs .
gmn caranya bwad nempatin codec" k ripway ?
bimbingg adekmu ini yg masii cuppu iia:eh:
maav klo repost:penguin:
ak masii baruu masukk FTI , ak masii bingungg bwadd ngeditt" fs .
gmn caranya bwad nempatin codec" k ripway ?
bimbingg adekmu ini yg masii cuppu iia:eh:
maav klo repost:penguin:[/quote]
comasuk sini bro
[url=http://theftalk.com/t36526-Compiled-Tutorials-%3A-Tweak-FS-%28CSS-and-JS%29.html]tweak fs[/url]
tweak fs
makasii kk __LaNgaLoNe__
ak coba