• ARCHIVES 
  • » [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

[quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

john_619619
» FTalkManiac
FTalk Level: zero
986
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

[quote=maepoinkz]:gift: :D :wow: <">[/quote] hey, don't spam! :mad:
flavonoid
» Banned
FTalk Level: zero
136
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

i love it!
carlomorphin
» n00b
FTalk Level: zero
37
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

wahahahaahahahaaha =D tnx
glenn_tamahome
» n00b
FTalk Level: zero
2
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

wat code shall i use?! the 1st one or the 2nd one? should i edit anythng frOm the 1st cOde?
dale
» FTalkAgent
FTalk Level: zero
2122
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

here.. put ur mesge 1 and 2, this code on ur js xtension.. :thumbsup: [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]
feruzz
» Banned
FTalk Level: zero
1557
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

[quote=honey_jx2]i guess the code is not working on ff??? :question: how to make the background of the shoutout transparent???[/quote] its working in all major browsers
mickyriora
» FTalkAddict
FTalk Level: zero
335
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

So this is where the code is...I haven't checked this & was intrigued & found the code I was searching for!!!! :lol: [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)

feruzz
» Banned
FTalk Level: zero
1557
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

ok....the marfillaster's [b]processAjaxRequest[/b] script also compatible with this trick should I edit my 1st post & put marfillaster's script so it would be compatible with other js(tracker, ajaxmessengger) script?
mickyriora
» FTalkAddict
FTalk Level: zero
335
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

[b]feruzz [/b] Oh sure...Yes please & thanks!!! =) :thumbsup:
feruzz
» Banned
FTalk Level: zero
1557
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

ok...code updated (compatible with marfillaster's processAjaxRequest script) as requested by mickyriora
mickyriora
» FTalkAddict
FTalk Level: zero
335
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

THANK YOU VERY MUCH [b]FERUZZ[/b], you had always been a great help since I had started here :lol: =) :thumbsup: Time to work on this :) :cool: That is sooo cool....THANKS AGAIN [b]Feruzz[/b]. I added it in my test page. Working well =) :thumbsup:

Last edited by mickyriora (2007-09-12 01:19:46)

feruzz
» Banned
FTalk Level: zero
1557
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

^ ur welcome :)
Mommy_D
» n00b
FTalk Level: zero
6
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

So, i edited my profile and suddenly this doesn't work anymore for me. I noticed the codes have changed and now i'm confused which one to use... the one i still have or the new one. I want this to show on my Who I Want to Meet, so do I just paste this code on my js <">and this in Who I Want to Meet <">I'm kinda confused with the Ajax codes (i don't even know what those are!) Do I have to add them or just disregard? Please help!!!!! thanks again and again and again :)

Last edited by Mommy_D (2007-09-12 04:26:31)

cip6192
» FTalkAddict
FTalk Level: zero
377
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

to [b]Mommy_D[/b] because this trick is ajax i think yuo need to include that part to make the trick works in your profile =)
Mommy_D
» n00b
FTalk Level: zero
6
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

thanks cip... it's working now yeyyyy!!!!!! :D
feruzz
» Banned
FTalk Level: zero
1557
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

1st post updated Friendster is doing some updates again!!!!
sickofyou
» FTalker
FTalk Level: zero
234
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

mine still works with the old one. ill just update when it really doesnt work anymore. :)
feruzz
» Banned
FTalk Level: zero
1557
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

^ dont include <">because it's useless anymore =|
sickofyou
» FTalker
FTalk Level: zero
234
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

ah ok ill just remove it.
ezil2007
» FTalkGeek
FTalk Level: zero
1426
0
1969-12-31

Re: [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

thanks for updating :D
  • ARCHIVES 
  • » [quote][b][color=red]For educational purposes only.[/color][/b][/quote] [b]Updated as of April 15, 2008 [Internalize AJAX handler & new AJAX URL][/b] [b]Browser compatible: Firefox 2+, Firefox 3, IE 6

Board footer

© 2024 F Talk

Current time is 20:42

[ 9 queries - 0.093 second ]
Privacy Policy