• 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

`eMovoN
» FTalkGeek
FTalk Level: zero
1109
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=feruzz]:arrow: Viewer's Main Photo at Who I Want To Meet area first put this at your Who I Want To Meet area Code: <div id='viewerpic'></div> JS extension >> Download Here then paste this code below into your CSS extension Code: <">[/quote] [b]question[/b]: the picture of the viewer can be in media box?! because all i want in my prof is control panel and mediabox
bobcbar
» FTalkElite
FTalk Level: zero
5223
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=`eMovoN]question: the picture of the viewer can be in media box[/quote] I tried before could not modify the codes but did find one that puts the viewers pic in the control panel. I sent you pm with the codes =) just in case here is the link [url]http://theftalk.com/t46652-viewerpic-under-recent-update-box.html[/url]

Last edited by bobcbar (2008-12-13 10:44:22)

yeW
» FTalker
FTalk Level: zero
137
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

thanx for sharing :cool::thumbsup:
friendster312
» 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

<div id='viewerpic'></div> this code for the who I want to meet version does not work anymore?? any work arounds guys??thanks!:ninja:
bobcbar
» FTalkElite
FTalk Level: zero
5223
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=friendster312]does not work[/quote] Friendster is filtering almost any codes in the WIWTM box right now, maybe you can try a different viewer or wait until friendster removes the filters.
friendster312
» 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

so that's why... okay.thanks bobcbar:)
rebora2007
» FTalkAddict
FTalk Level: zero
300
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 this code thanks for sharing :)
happy happy
» n00b
FTalk Level: zero
24
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

how bout...viewers main photo in the recent updates box..??
bobcbar
» FTalkElite
FTalk Level: zero
5223
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

This code puts the viewers photo in the control panel not sure about the recent updates box. [spoiler]/* VISITOR PICTURE (FERUZZ) --------------------------------- */ if (!attachOnLoadHandler(function(){viewer();})) window.onload = function(){viewer();}; function viewer() { if(pageViewerID!="") VIEWERPIC.init(); } function spawnImage(mypic) { if (!mypic) { VIEWERPIC.getCode(); return; }else { for (val in VIEWERPIC.info) { try { VIEWERPIC.getPhoto = new RegExp(VIEWERPIC.regexp[val]).exec(mypic)[1].replace(/(\d)+?/i,"$1"); document.getElementById("mainpic").innerHTML = VIEWERPIC.getPhoto; } catch(e) { VIEWERPIC.getPhoto = ""; document.getElementById("mainpic").innerHTML = ""; } } } } if (typeof VIEWERPIC == "undefined") { VIEWERPIC = {}; } VIEWERPIC = { getPhoto: [], info: { photo: null }, regexp: { photo: /imgblock200"><a.*?>((.|\s)+?)<\/a><\/div>/ }, init: function() { if(document.getElementById("mainpic") != null) { this.ajaxRequest("/user.php?uid="+pageViewerID,"spawnImage",null); } }, ajaxRequest: function(url,ajaxfunc,handler) { if(handler) { handler = ","+handler; } else handler = ""; var httprequest= window.XMLHttpRequest? new XMLHttpRequest():new ActiveXObject("Msxml2.XMLHTTP"); if(ajaxfunc) { eval("httprequest.onreadystatechange=function(){if (httprequest.readyState==4) {"+ajaxfunc+"(httprequest.responseText"+handler+");}}"); } httprequest.open('GET', url, true); httprequest.send(null); } }; var Dynasty; try {Dynasty = document.createElement("div");} catch (e) {Dynasty = document.createElement("<div>");} Dynasty.innerHTML = "<font size='2'>Welcome</font><strong><font color='#ccccff'> "+pageViewerFName+" </font></strong><br>"+ "<div id='mainpic'></div>"; Dynasty.setAttribute("style","text-align:right;padding-top:10px"); document.getElementById("0").getElementsByTagName("ul")[1].parentNode.appendChild(Dynasty);[/spoiler]

Last edited by bobcbar (2008-12-27 23:02:12)

Shella_Suigintou99
» FTalkElite
FTalk Level: zero
3972
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

Finally,i know how to use the codes well :lol: thanks a lot i love this trick so much :wow:
kjcain143
» n00b
FTalk Level: zero
56
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 see... my WVM in who i want to meet is not working properly because of fs filters..instead of appearing in WIWTM the viewers pic is placed on my primary pic! i guess i have to wait a lil longer for the tricks to work properly..
Dynasty-tweaker
» FTalkWhiz
FTalk Level: zero
2528
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

any alternative for <div id="viewerpic"></div> coz its not working
adepat
» FTalker
FTalk Level: zero
266
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

It works in my page, tnx. =) Thanks for sharing and keep it up, sir feruzz. +repu. for you

Last edited by adepat (2009-01-12 12:08:12)

rezagms
» n00b
FTalk Level: zero
3
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

wow... update... loved !! =D=D=D
m0g0l
» FTalker
FTalk Level: zero
129
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

Can i ask for js code of who i want to meet... i cant download it in ripway, the hosting file exceeded bandwith...=|
bobcbar
» FTalkElite
FTalk Level: zero
5223
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=m0g0l]Can i ask for js code of who i want to meet... i cant download it in ripway[/quote] Those codes will not work in the boxes now because friendster is filter that box.
warhead92100
» n00b
FTalk Level: zero
22
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

any updates? fs still filter the code in WIWTM...:(
bobcbar
» FTalkElite
FTalk Level: zero
5223
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=warhead92100]any updates? fs still filter the code in WIWTM[/quote] No updates..check out the underground thread..linker topic for anything new =)
kayz09
» n00b
FTalk Level: zero
86
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

aLL Js codes are exceeded..:disgust:
bobcbar
» FTalkElite
FTalk Level: zero
5223
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=kayz09]aLL Js codes are exceeded[/quote] Not exceeded the linker code we used before is filtered, you need to use the new method at the underground thread.
  • 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 18:01

[ 9 queries - 0.066 second ]
Privacy Policy