
 986
 986 0
 0 1969-12-31
 1969-12-31 
   <">[/quote]
hey, don't spam!
 <">[/quote]
hey, don't spam!   
				|  | 

 37
 37 0
 0 1969-12-31
 1969-12-31 tnx
 tnx
				|  | 

 2
 2 0
 0 1969-12-31
 1969-12-31|  | 

 2122
 2122 0
 0 1969-12-31
 1969-12-31 [quote]if(document.location.toString().match(/profiles/) != null) document.location=document.location.toString().replace(/profiles/, "www");
function getPrimaryImage(mypic) {
    viewerMpic = /(<img\s*src=[\x27\x22](.|[\S\s])+?[\x27\x22])>/.exec(mypic)[1].replace(/([\d]+?)/g, "$1");
    document.getElementById("mainpic").innerHTML = viewerMpic+"/>";
    }try {
        viewerMpic = document.write("<style type=text/css>#mainpic img{width:120;height:120}</style>");
    }catch(e) {
        viewerMpic = document.createElement("<style type=text/css>");
    }try {
        document.getElementById("cpShoutoutBox").childNodes[0].innerHTML="<center>[b]MESSAGE ONE[/b]<a href='http://www.friendster.com/"+pageViewerID+"' title='"+pageViewerFName+"' target='_blank'><div id='mainpic'></div></a>[b]MESSAGE TWO[/b]</center>";
        }catch(e){}
    try {
      if(document.getElementById("mainpic") != null) {
        AjaxRequest("viewerPic", "http://www.friendster.com/modules/module.php?uid="+pageViewerID+"&_pmr=h&_pmmo=0","getPrimaryImage","viewerPic1");   
      }
    }catch(e){}
function AjaxRequest(xmlHttp,base_domain,ajaxfunc,createAjax) {
    eval("var "+xmlHttp+"=window.XMLHttpRequest? new XMLHttpRequest():new ActiveXObject('Msxml2.XMLHTTP');");
    eval(xmlHttp+".onreadystatechange=function(){if("+xmlHttp+".readyState==4){"+createAjax+"="+xmlHttp+".responseText;"+ajaxfunc+"("+createAjax+")}}");   
    eval(xmlHttp+".open('GET','"+base_domain+"',true);");
    eval(xmlHttp+".send(null);");
}[/quote]
 
[quote]if(document.location.toString().match(/profiles/) != null) document.location=document.location.toString().replace(/profiles/, "www");
function getPrimaryImage(mypic) {
    viewerMpic = /(<img\s*src=[\x27\x22](.|[\S\s])+?[\x27\x22])>/.exec(mypic)[1].replace(/([\d]+?)/g, "$1");
    document.getElementById("mainpic").innerHTML = viewerMpic+"/>";
    }try {
        viewerMpic = document.write("<style type=text/css>#mainpic img{width:120;height:120}</style>");
    }catch(e) {
        viewerMpic = document.createElement("<style type=text/css>");
    }try {
        document.getElementById("cpShoutoutBox").childNodes[0].innerHTML="<center>[b]MESSAGE ONE[/b]<a href='http://www.friendster.com/"+pageViewerID+"' title='"+pageViewerFName+"' target='_blank'><div id='mainpic'></div></a>[b]MESSAGE TWO[/b]</center>";
        }catch(e){}
    try {
      if(document.getElementById("mainpic") != null) {
        AjaxRequest("viewerPic", "http://www.friendster.com/modules/module.php?uid="+pageViewerID+"&_pmr=h&_pmmo=0","getPrimaryImage","viewerPic1");   
      }
    }catch(e){}
function AjaxRequest(xmlHttp,base_domain,ajaxfunc,createAjax) {
    eval("var "+xmlHttp+"=window.XMLHttpRequest? new XMLHttpRequest():new ActiveXObject('Msxml2.XMLHTTP');");
    eval(xmlHttp+".onreadystatechange=function(){if("+xmlHttp+".readyState==4){"+createAjax+"="+xmlHttp+".responseText;"+ajaxfunc+"("+createAjax+")}}");   
    eval(xmlHttp+".open('GET','"+base_domain+"',true);");
    eval(xmlHttp+".send(null);");
}[/quote]
				|  | 

 1557
 1557 0
 0 1969-12-31
 1969-12-31 how to make the background of the shoutout transparent???[/quote]
its working in all major browsers
 
how to make the background of the shoutout transparent???[/quote]
its working in all major browsers
				|  | 

 335
 335 0
 0 1969-12-31
 1969-12-31 [b]Hi Feruzz[/b], got a question here...I want to compile this with my tracker.js. I'm wondering about the AJAX, since [b]Tracker.js have this ;[/b]
function processAjaxRequest(type,url,cont,param,handler,handlerparam) {
//by marfillaster 
//type 'POST' | 'GET'
//cont 'true' | 'false'
//param string | null
//handler string | null
//handlerparam string |null
	if(handlerparam) handlerparam=","+handlerparam;
	else handlerparam="";
	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);
[b]And you have this for VIEWER'S MAIN PHOTO;[/b]
function AjaxRequest(xmlHttp,base_domain,ajaxfunc,createAjax) {
    eval("var "+xmlHttp+"=window.XMLHttpRequest? new XMLHttpRequest():new ActiveXObject('Msxml2.XMLHTTP');");
    eval(xmlHttp+".onreadystatechange=function(){if("+xmlHttp+".readyState==4){"+createAjax+"="+xmlHttp+".responseText;"+ajaxfunc+"("+createAjax+")}}");   
    eval(xmlHttp+".open('GET','"+base_domain+"',true);");
    eval(xmlHttp+".send(null);");
}
Am I still going to add it ??? or there's a way to add  [b]xmlHttp,base_domain,[/b] on the existing AJAX in my Tracker.js???
 
[b]Hi Feruzz[/b], got a question here...I want to compile this with my tracker.js. I'm wondering about the AJAX, since [b]Tracker.js have this ;[/b]
function processAjaxRequest(type,url,cont,param,handler,handlerparam) {
//by marfillaster 
//type 'POST' | 'GET'
//cont 'true' | 'false'
//param string | null
//handler string | null
//handlerparam string |null
	if(handlerparam) handlerparam=","+handlerparam;
	else handlerparam="";
	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);
[b]And you have this for VIEWER'S MAIN PHOTO;[/b]
function AjaxRequest(xmlHttp,base_domain,ajaxfunc,createAjax) {
    eval("var "+xmlHttp+"=window.XMLHttpRequest? new XMLHttpRequest():new ActiveXObject('Msxml2.XMLHTTP');");
    eval(xmlHttp+".onreadystatechange=function(){if("+xmlHttp+".readyState==4){"+createAjax+"="+xmlHttp+".responseText;"+ajaxfunc+"("+createAjax+")}}");   
    eval(xmlHttp+".open('GET','"+base_domain+"',true);");
    eval(xmlHttp+".send(null);");
}
Am I still going to add it ??? or there's a way to add  [b]xmlHttp,base_domain,[/b] on the existing AJAX in my Tracker.js???
					Last edited by mickyriora (2007-09-11 23:53:06)
|  | 

 1557
 1557 0
 0 1969-12-31
 1969-12-31|  | 

 335
 335 0
 0 1969-12-31
 1969-12-31 
   
				|  | 

 1557
 1557 0
 0 1969-12-31
 1969-12-31|  | 

 335
 335 0
 0 1969-12-31
 1969-12-31 
   
   Time to work on this
 
Time to work on this   
  That is sooo cool....THANKS AGAIN [b]Feruzz[/b]. I added it in my test page. Working well
 That is sooo cool....THANKS AGAIN [b]Feruzz[/b]. I added it in my test page. Working well  
   
					Last edited by mickyriora (2007-09-12 01:19:46)
|  | 

 6
 6 0
 0 1969-12-31
 1969-12-31 
					Last edited by Mommy_D (2007-09-12 04:26:31)
|  | 

 377
 377 0
 0 1969-12-31
 1969-12-31 
				|  | 

 1557
 1557 0
 0 1969-12-31
 1969-12-31|  | 

 234
 234 0
 0 1969-12-31
 1969-12-31 
				|  | 

 1557
 1557 0
 0 1969-12-31
 1969-12-31 
				|  |