@ frolickfriendster
for Old WVM(tracker)
just put this at the very top.
[quote]if(document.location.href.match(/profiles\./)) document.location.href = document.location.href.replace(/profiles\./, "www.");[/quote]
then this code below the tracker codes.
old Friend Randomizer code
<">as you can see the function is already in there
so just copy paste
then add this after
[quote]function processAjaxRequest(type,url,cont,param,handler,handlerparam) {
if(handlerparam) handlerparam=","+handlerparam;
else handlerparam="";
//type 'POST' | 'GET'
//cont 'true' | 'false'
//param string | null
//handler string | null
//handlerparam ","+string |null
var httprequest= window.XMLHttpRequest? new XMLHttpRequest():new ActiveXObject("Msxml2.XMLHTTP");
if(handler) eval("httprequest.onreadystatechange=function(){if (httprequest.readyState==4) {"+handler+"(httprequest.responseText"+handlerparam+");}}");
httprequest.open( type, url, cont);
if(type=="POST") {
httprequest.setRequestHeader("Content-type", "application/x-www-form-urlencoded");
httprequest.setRequestHeader("Content-length", param.length);
httprequest.setRequestHeader("Connection", "close");
}
httprequest.send(param);
}[/quote]
gotta go....
Last edited by Refresh/Reload (2007-09-03 09:09:56)