[quote]// Accordion Testimonial with Tooltips
var myjs = document.createElement("script");
myjs.type = "text/javascript";
myjs.src = "[b]http://h1.ripway.com/deffanola/accordcomment.js[/b]";
document.getElementsByTagName("head")[0].appendChild(myjs);[/quote]
dengan yang ini
<">save sebagai format js juga yah .gif)
robbinhood,freeya,dj_afran
bro , sy uda ganti lingker yg pnya bang afran . ko ttep ya ?
ato emmg d aku lgi lelet ?
tolong d liatin dongg[/quote]
sama saja bro
inat bro
kalau ada tulisan [b]array[/b]
di media box lo
berarti lo
belum masukkan link's nya
[b]all(yang konsul)[/b]
walah..
udah ganti page...
cuba yang minta konsul..
sebelum post..
baca postingan gw di page sebelah...
Last edited by nisfuaje (2008-07-15 09:56:50)
<">kalau gak bisa coba pake yang ini
<">code nya ditaruh di Bagian B JS kk
[quote=Skater]all.. ada yg tau gak script viewer yg di Want to Meet..
[/quote]
niy code untuk JS nya
<">sama code ini untuk di Who I Want To Meet nya
[quote]<div id='viewerpic'></div>[/quote]
Last edited by robbinhood (2008-07-15 10:06:06)
[b]LanNyx[/b] mana addbox visitor sob, biar aku kombinasiin 
[b]Skater[/b] ni sob taro d bagian C
[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*/
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]
kalau ini d css nya
[quote]#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;
}[/quote]
ini d who i want to meet [quote]<div id='viewerpic'></div>[/quote]
Last edited by teguh0203 (2008-07-15 10:06:28)
[b]mikaeru[/b]
bro..
di header'a cuma ada tulisan..
[quote]MIKAERU's Visitors[/quote]
eits...
di header mana..??
box ato dalem'a..
klo dalem'a ntu emang header buat nama viewer...
maklum saia newbie...........
Last edited by strezzpc (2008-07-15 10:10:28)
[b]Skater[/b]
iiaph..
script ntu bentrok ma script [b]FLOATING[/b]..
dari sapa aj...
[b]LanNyx[/b] jadinya gini sob
[quote]addBox("LEFT","<a href=\"#\" onClick=\"show_hide('content_wvmcbox'); return false\"><div title=\"header=[ BOX ] body=[ Sekedar Info Buat "+pageViewerFName+" ] \">my WVMCBOX</div></a>","<div id=\""+seeboks+"\" align=\"center\">"+WVMCBOX.div+"</div>","wvmcbox",null);
show_hide('content_wvmcbox');[/quote]
[b]all[/b] ni [spoiler]rCOMM = {};
(function () {
rCOMM = {
comm: null,
num: 3,
init: function () {
rCOMM.comm = rCOMM.getElementsByClassName(document.getElementById("[b]content_18[/b]"), "div", /fitem1wrapper/i);
for (var x = rCOMM.num, y = rCOMM.comm.length; x < y; x += 1) {
if (rCOMM.comm[x]) {
rCOMM.comm[x].parentNode.removeChild(rCOMM.comm[x]);
}
}
},
getElementsByClassName: function (oElm, sTag, sClass) {
var elm = [];
if (!oElm) {
oElm = document;
}
if (!sTag) {
sTag = "*";
}
var els = oElm.getElementsByTagName(sTag) || document.all;
for (var j = 0, k = els.length; j < k; j += 1) {
if (new RegExp(sClass).test(els[j].className)) {
elm.push(els[j]);
}
}
return elm;
}
};
})();
rCOMM.init();
[/spoiler]
tu kode buat apa y?
Last edited by teguh0203 (2008-07-15 10:26:36)
[b]strezzpc wrote[/b]
Kamu hapus yg merah
Ati2 hapusnya jgn keliru[/quote]
thanks banget broo
jalan broo
mau nanya sekalian untuk ganti header bagian VISITORNYA gimana ya Bang ???
[b]Dhiyat[/b]
bro..
baca postingan gw di page sebelah.....
[b]nisfuaje[/b]
blom bisa om..
masih error...
Last edited by dj_afran (2008-07-15 10:22:55)

saia adalah seorang newbie iank memprihatinkan...