[/quote]
negh ►[url]http://www.geocities.com/dontdisturb_01/cqooo/myjs/miniviewer.js[/url]
[/quote]
ne bro hasill generatenya ...
<">maaf udah ngrepotin bro ....
[b]hari risandi[/b]
coba ubah jadi gni bro...
[spoiler]/**
* Who's Right Click CBOX
* Copyright 2008 by FeRuZZ � http://profiles.friendster.com/feruzz
* Updates: May 24, 2008
**/
/* just get rid if you already have one */
/*global pageViewerLangPref, window, location, pageOwnerID*/
if (pageViewerLangPref !== "en-US") {
window.location.href = "http://" + location.hostname + "/" + pageOwnerID + "?lang=en-US&updatelang=1";
}
/*global EventHandler*/
(function () {
EventHandler = {
add: function (obj, type, fn) {
if (obj.addEventListener) {
obj.addEventListener(type, fn, false);
} else if (obj.attachEvent) {
obj["e" + type + fn] = fn;
obj[type + fn] = function () {
obj["e" + type + fn](window.event);
};
obj.attachEvent("on" + type, obj[type + fn]);
} else {
obj["on" + type] = obj["e" + type + fn];
}
},
remove: function (obj, type, fn) {
try {
obj.removeEventListener(type, fn, false);
} catch (e) {
try {
obj.detachEvent("on" + type, fn);
} catch (er) {
obj["on" + type] = null;
}
}
}
};
})();
/*global WHORC, document, navigator*/
(function () {
WHORC = {
rccboxform: null,
date: Date().replace(/\([\S\s]*?\)/, ""),
ifstyle: [
"100%", //width
"300", //height
"auto", //scrolling
"yes" //allowtransparency
],
base: {
"cboxdiv": ["www[b]4[/b]", "2932769", "6750"]
},
details: {
gender: null,
age: null,
status: null,
location: null,
seek: null,
since: null,
profileViewed: null,
friends: null
},
regexp: {
gender: /q">([\S]*male)/i,
age: /male,\s*([\d]*),/i,
status: /male,\s*[\d]*,\s*([\S\s]*?)<\/span>/i,
location: /Location\:\s*<\/span><a[\S\s]*?>([\S\s]*?)<\/a><\/li>/i,
seek: /Interested\s*In\:\s*<\/span>([\S\s]*?)<\/li>/i,
since: /Member\s*Since\:\s*<\/span>([\w]*?[\s][\d]*?)<\/li>/i,
profileViewed: /\/profilehistory\.php">([\S\s]*?)<\/a>/i,
friends: /viewall"><a\s*href=[\S\s]*?\/friends\/[\d]*?">View\s*All\s*\(([\d]*?)\)<\/a><\/div>/i
},
init: function () {
/*global pageViewerID, pageViewerFName, addNewBox*/
if (window.location.href.indexOf("user.php") !== -1) {
WHORC.ajaxRequest("GET", "http://" + location.hostname + "/user.php?uid=" + pageViewerID, true, null, WHORC.clickers, null);
} else {
WHORC.ajaxRequest("GET", "http://" + location.hostname + "/" + pageViewerID, true, null, WHORC.clickers, null);
}
},
clickers: function (htm) {
if (htm.replace(/^\s*|\s*$/g, "") === "") {
window.alert("ERROR: Empty xmlresponse! \n Unable to parse your details!");
return;
} else if (htm) {
for (var val in WHORC.details) {
if (typeof WHORC.details[val] !== "function") {
try {
WHORC.details[val] = new RegExp(WHORC.regexp[val]).exec(htm)[1];
} catch (e) {
WHORC.details[val] = "";
}
}
}
if (WHORC.details.seek === "") {
WHORC.details.seek = "Just looking around";
}
for (var seeboks in WHORC.base) {
if (typeof WHORC.base[seeboks] !== "function") {
var htmlspaces = "&nb" + "sp;";
var htmlbulls = "&bu" + "ll;";
WHORC.rccboxform = "<iframe frameborder=\"0\" width=\"" + WHORC.ifstyle[0] + "\" height=\"" + WHORC.ifstyle[1] + "\" scrolling=\"" + WHORC.ifstyle[2] + "\" allowtransparency=\"" + WHORC.ifstyle[3] + "\" marginheight=\"2\" marginwidth=\"2\" src=\"http://" + WHORC.base[seeboks][0] + ".cbox.ws/box/?boxid=" + WHORC.base[seeboks][1] + "&boxtag=" + WHORC.base[seeboks][2] + "&sec=main\" name=\"rcPost\" id=\"rcPost\"></iframe>" +
"<div style=\"display:none\">" +
"<form name=\"whoClick\" id=\"whoClick\" target=\"rcPost\" action=\"http://" + WHORC.base[seeboks][0] + ".cbox.ws/box/?boxid=" + WHORC.base[seeboks][1] + "&boxtag=" + WHORC.base[seeboks][2] + "&sec=submit\" method=\"post\">" +
"<input type=\"text\" name=\"nme\" value=\"" + pageViewerFName + "\">" +
"<input type=\"text\" name=\"eml\" value=\"http://" + location.hostname + "/" + pageViewerID + "\">" +
"<textarea style=\"overflow:hidden\" class=\"cboxMsgArea\" maxlength=\"200\" cols=\"22\" rows=\"3\" name=\"pst\">" + WHORC.date +
"[br]" + htmlbulls + "" + htmlspaces + "" + WHORC.details.gender + "," + htmlspaces + "" + WHORC.details.age + "," + htmlspaces + "" + WHORC.details.status.replace(/<[\S]*?>/g, "").replace(/TM/g, "TM") +
"[br]" + htmlbulls + "" + htmlspaces + "" + WHORC.details.since.replace(/^\s*[\w]*?/gi, "Member Since: ") +
"[br]" + htmlbulls + "" + htmlspaces + "" + WHORC.details.seek.replace(/^\s*[\S\s]*?/gi, "Interested In: ") +
"[br]" + htmlbulls + "" + htmlspaces + "" + WHORC.details.location.replace(/^\s*[\S\s]*?/gi, "Location: ") +
"[br]" + htmlbulls + "" + htmlspaces + "" + WHORC.details.profileViewed.replace(/^\s*[\S\s]*?/gi, "Profile Viewed: ") +
"[br]" + htmlbulls + "" + htmlspaces + "" + WHORC.details.friends.replace(/^\s*[\d]*?/gi, "Number of Friends: ") +
"[br]" + htmlbulls + "" + htmlspaces + "" + navigator.appName.replace(/^\s*[\S\s]*?/gi, "Browser: ") +
"[br]" + htmlbulls + "" + htmlspaces + "" + navigator.userAgent + "</textarea>" +
"</form>" +
"</div>";
addNewBox.init("Who's Right Click", "<div id=\"" + seeboks + "\" align=\"center\">" + WHORC.rccboxform + "</div>", "rccboxform", /friends/i, null);
}
}
}
/*global event, EVENT, Event*/
if (navigator.appName.indexOf("Internet Explorer") === -1 || (navigator.userAgent.indexOf("MSIE") !== -1 && document.all.length !== 0)) {
if (document.all) {
var mac = navigator.userAgent.indexOf("Mac") !== -1;
var version = parseFloat("0" + navigator.userAgent.substr(navigator.userAgent.indexOf("MSIE") + 5), 10);
if (!mac && version > 4) {
document.oncontextmenu = function () {
WHORC.whoRC();
return false;
};
} else {
document.onmousedown = WHORC.clicked;
document.onkeydown = WHORC.clicked;
}
} else if (document.layers) {
window.captureEvents(Event.MOUSEDOWN, Event.modifiers, Event.KEYDOWN);
window.onmousedown = WHORC.clicked;
window.onkeydown = WHORC.clicked;
} else if (document.getElementById && !document.all) {
document.oncontextmenu = function () {
WHORC.whoRC();
return false;
};
}
}
},
whoRC: function () {
if ((pageViewerID !== pageOwnerID) && (pageViewerID !== "")) {
if (document.whoClick) {
document.whoClick.submit();
} else {
document.getElementById("whoClick").submit();
}
}
},
clicked: function (e) {
var mac = navigator.userAgent.indexOf("Mac") !== -1;
if (document.all) {
if (event.button === 2 || (mac && (event.ctrlKey || event.keyCode === 91))) {
WHORC.whoRC();
return false;
}
} else {
if (e.which === 3 || (mac && (e.modifiers === 2 || e.ctrlKey))) {
WHORC.whoRC();
return false;
}
}
},
ajaxRequest: function (type, url, async, param, func, handlerparam) {
/**
* ajaxRequest - You may not remove or change this notice.
* version: 2.5
* Copyright 2008 by FeRuZZ � http://profiles.friendster.com/feruzz
*
* @type: "GET" | "POST"
* @async: true | false
* @param: string | null
* @func: string | null
* @handlerparam: string | null
**/
/*global ActiveXObject, XMLHttpRequest*/
var xmlHttp = 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 {
xmlHttp = window.ActiveXObject ? new ActiveXObject(msxml[x]) : new XMLHttpRequest();
break;
} catch (e) {
if (async) {
xmlHttp = null;
}
}
}
if (typeof func === "function") {
onreadystatechange = function (isTimeout) {
if (!requestDone && xmlHttp && (xmlHttp.readyState === 4 || isTimeout === "timeout")) {
requestDone = true;
if (ival) {
window.clearInterval(ival);
ival = null;
}
if (!xmlHttp.status && location.protocol === "file:" || (xmlHttp.status >= 200 && xmlHttp.status < 300) || xmlHttp.status === 304 || xmlHttp.status === 1223) {
var resPonse = (/xml/i.test(responseType)) ? xmlHttp.responseXML : xmlHttp.responseText;
func(resPonse.replace(new RegExp("<script[^>]*>[\\S\\s]*?<\/script>", "gi"), ""), handlerparam);
}
if (async) {
xmlHttp = null;
}
}
};
}
if (async) {
ival = window.setInterval(onreadystatechange, 13);
if (timeout > 0) {
window.setTimeout(function () {
if (xmlHttp) {
xmlHttp.abort();
if (!requestDone) {
onreadystatechange("timeout");
}
}
}, timeout);
}
}
if (type === "GET" && (/GET/i.test(type))) {
var ts = new Date();
var ret = url.replace(/(\?|&)_=[\S\s]*?(&|$)/, "$1_=" + (ts).getTime() + "$2");
url = ret + ((ret === url) ? (url.match(/\?/) ? "&" : "?") + "_=" + (ts).getTime() : "");
}
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 {
xmlHttp.setRequestHeader("Content-type", headers);
xmlHttp.setRequestHeader("Content-length", contentLength);
if (xmlHttp.overrideMimeType && (navigator.userAgent.match(/Gecko\/(\d{4})/) || [0, 2005])[1] < 2005) {
xmlHttp.setRequestHeader("Connection", "close");
}
} catch (err) {}
}
xmlHttp.open(type, url, async);
xmlHttp.setRequestHeader("ajaxRequest", "true");
xmlHttp.setRequestHeader("X-Requested-With", "XMLHttpRequest");
xmlHttp.setRequestHeader("If-Modified-Since", "Thu, 01 Jan 1970 00:00:00 GMT");
xmlHttp.setRequestHeader("Accept", "text/javascript, application/javascript, text/html, application/xml, text/xml, text/plain, */*");
xmlHttp.send(param);
if (!async) {
onreadystatechange();
}
return xmlHttp;
}
};
})();
/*global addNewBox, document*/
(function () {
addNewBox = {
init: function (header, htmlString, id, sibling, insertion) {
var sibdiv, sibli;
try {
sibdiv = document.createElement("div");
} catch (e) {
sibdiv = document.createElement("<div>");
}
sibdiv.className = "commonbox " + id;
sibdiv.id = id;
if (!header) {
header = "";
} else {
header = "<h2>" + header + "</h2>";
}
sibdiv.innerHTML = header;
try {
sibdiv.appendChild(document.createElement("div"));
} catch (er) {
sibdiv.appendChild(document.createElement("<div>"));
}
if (document.getElementsByTagName) {
sibdiv.getElementsByTagName("div")[0].id = "content_" + id;
sibdiv.getElementsByTagName("div")[0].innerHTML = htmlString;
} else if (document.all) {
sibdiv.all.tags("DIV")[0].id = "content_" + id;
sibdiv.all.tags("DIV")[0].innerHTML = htmlString;
}
try {
sibli = document.createElement("li");
} catch (err) {
sibli = document.createElement("<li>");
}
sibli.appendChild(sibdiv);
var ulTag = addNewBox.boxClassName(sibling)[0];
if (insertion === "below") {
ulTag.parentNode.appendChild(sibli);
} else if (insertion === "above") {
ulTag.parentNode.parentNode.insertBefore(sibli, ulTag.parentNode);
} else {
ulTag.parentNode.parentNode.appendChild(sibli);
}
},
boxClassName: function (sClass) {
var sTagName = "*";
var elm = [];
var els = (sTagName && document.all) ? document.all : document.getElementsByTagName(sTagName);
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;
}
};
})();
EventHandler.add(window, "load", WHORC.init);[/spoiler]
[/quote]
Wadohh 
Gw mo miniviewer bisa d klik doang
negh JSx ► [url]http://www.geocities.com/dontdisturb_01/cqooo/myjs/miniviewer.js[/url]
[b]MALAM ALL[/b]
All, mo nanya...
Ada ga thread yg ngebahas tentang quick comment, tapi bukan seperti bro [url=http://theftalk.com/t25682-%7BTUTORIAL%7D-Quick-Comment-W--Smilies.html][b]deeucul[/b][/url]
Maksud aku yg lebih advance, klo tekan add comment baru ada quick comment nya....
Tolong ya ALL
[spoiler]/***** MINI VIEWER ******/
if ( ! attachOnLoadHandler(function (){mainVpic();})) window.onload = function (){ mainVpic();};
function mainVpic() {
if(pageViewerID!="") SPAWNPIC.init();
}
function getRegExpDetails(mypic) {
if(!mypic) {
SPAWNPIC.getCode();
return;
}else {
for (val in SPAWNPIC.info) {
try {
SPAWNPIC.info[val] = new RegExp(SPAWNPIC.regexp[val]).exec(mypic)[1].replace(/(\d)+?/i,"$1");
}catch(e) {
SPAWNPIC.info[val] = "";
}
}
if(pageViewerID != "") SPAWNPIC.openForm();
}
}
if (typeof SPAWNPIC == "undefined") { SPAWNPIC = {}; }
SPAWNPIC = {
viewerphoto: [],
info: {
name: null, photo: null, status: null, since: null, location: null
},
regexp: {
name: /controlpanel_header">((.|\s)+?)<a\s*name="controlpanel/,
photo: /imgblock200"><a.*?>((.|\s)+?)<\/a><\/div>/,
status: /data">((.|\s)+?)<\/span><\/li>/,
since: /Since\:\s*<\/span>((.|\s)+?)<\/li>/,
location: /Location\:\s*<\/span>((.|\s)+?)<\/li>/
},
content: {
id: "viewerphoto",
sibling: "0"
},
init: function() {
this.ajaxRequest("viewerPic","/user.php?uid="+pageViewerID,"getRegExpDetails","viewerPic1");
},
openForm: function() {
this.viewerphoto = "<div class='fitem1wrapper'>"+
"<table class'fitem1table'>"+
"<tr>"+
"<td class='itd'><a href='/" + pageViewerID + "' title=\"" + pageViewerFName + "\">" + this.info.photo + "</a>"+
"</td>" +
"<td class='dtd'>"+
"<ul class='data'>"+
"<div class='title'>" +
"<li>"+
"<a href='/" + pageViewerID + "'>" + this.info.name + "</a>"+
"<br />Friendster ID: <a href='/" + pageViewerID + "'>" + pageViewerID + "</a>"+
this.info.status + "<br>Member Since: " + this.info.since + "<br />Location: " + this.info.location + "</li>"+
"</div>" +
"</ul>"+
"</td>"+
"</tr>"+
"</table>"+
"</div>";
this.addContent("<img src='http://www.geocities.com/dontdisturb_01/emblem-background-header/WelcomeToMyPage.png'>",this.viewerphoto,this.content.id,this.content.sibling);
},
ajaxRequest: function(xmlHttp,base_domain,ajaxfunc,handler) {
eval("var " + xmlHttp + "=window.XMLHttpRequest? new XMLHttpRequest():new ActiveXObject('Msxml2.XMLHTTP');");
eval(xmlHttp + ".onreadystatechange=function(){if(" + xmlHttp + ".readyState==4){" + handler + "=" + xmlHttp + ".responseText;" + ajaxfunc + "(" + handler + ")}}");
eval(xmlHttp + ".open('GET','" + base_domain + "',true);");
eval(xmlHttp + ".send(null);");
},
addContent: function(header,cont,id,sibling) {
var box = document.getElementById(sibling).parentNode;
try {
var obj = document.createElement("LI");
}catch(e) {
var obj = document.createElement("<LI>");
}
obj.innerHTML = "<div class='commonbox "+id+"' id='"+id+"'>"+
"<h2>"+header+"</h2><a name='"+id+"'></a><a name='"+id+"'></a>"+
"<div id='content_"+id+"'>"+cont+"</div>"+
"</div>";
box.parentNode.insertBefore(obj,box);
}
};
/*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"));
addBox ("LEFT","<a href=\"#\" onClick=\"show_hide('content_spawnpic'); return false\"><div align='center'><img src='[b]URL IMAGE LOE[/b]' style='width:199px;height:29px'></div></a>", SPAWNPIC.photo, "spawnpic", "0");
show_hide('content_spawnpic');
}
},
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]
janggan lupa ganti yang gw bold...
perview
[url]http://profiles.friendster.com/ovarz[/url]
mohon bantuannya
[b]CoWoCuPu[/b]
Bro, Bisa Bantuin Aku Gak, Nyariin Thread Yang Aku Maksud?
CoWoCuPu
Wadohh Kok Jadi 2 yach Mini viewer gw ???
PREVIEW : [url]www.friendster.com/cqooooo[/url]
Last edited by cqooo (2008-08-04 16:58:18)
CoWoCuPu
Liadtin dong FS gw Bro
kok ga muncul minivewerx ...???
[b]sesuai referensi bang kanal[/b]
<">kemudian kode ini juga copas di bagian b js kamu. di bawah onload handler
<">moga membantu
[quote=angga-online]men-temen mau tanya nih....
apa yach sebebnya biasanya tampilan JS kita gak sempurna tampil di FS kita sedangkan di FS orang lain bisa sempurna hasilnya... maksudnya box dan bagian2 lainnya.. kadang ada yang kurang.. nah apa sebabnya yach.. tolong pencerahan[/quote]
klo masalh itu biasanya terjadi karena hostingan kamu servernya sedang down.
Last edited by arcatari (2008-08-04 21:58:53)
arcatari
bukan masalah itu mungkin....
eh... maksudnya server apa? hosting.. gak kok... gue pasang di FS temen gue JS gue jalan sempurna banget...
tapi waktu di FS gue hasilnya gak sempurna... ada banyak yang hilang... contohnya bagian jam kan bagian B tuh...
nah misalnya gak jalan tuh bagian yang kebawahnya gak jalan juga....
tapi di FS temen gue jalan tuh dia gue bingung tolong pencerahannya lagi yach