• ARCHIVES 
  • » >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

Pages: 12

>>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

Lordheinz
» FTalkElite
FTalk Level: zero
4377
0
1969-12-31

>>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

>>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onProfileLoad() { //onload handler //(pattern) addBox("L-R","Header",htm,"cssid","sibling"); addBox("RIGHT",pageOwnerFName+"'s Visitors",TRACKER.div.innerHTML,"tracker",null); //other boxes goes here }setTimeout("onProfileLoad()",4000); /*TRACKER OBJECT*/ if (typeof TRACKER == "undefined") { TRACKER = {}; } TRACKER = { style: { filter: "chroma(color='#FFFFFF')", width: '300px', height: '520px', border: '0px', overflow: 'hidden' }, attributes: { frameborder: '0', allowtransparency: 'true' }, phplink: "URL_OF_TRACKER.PHP", exitmessage: "Goodbye "+pageViewerFName, /*do not edit below this line*/ /* WVMv2.1 by marfillaster, copyright 2007 friendster.com/mumbhaki credits: feruzz, renalvir(pimped), nopathz, friendstertalk.com, friendster.com licensed under GNU General Public License, version 2 http://www.gnu.org/licenses/gpl.html Disclaimer: NO GUARANTEE and WARRANTY provided! For educational purposes only. Author will not be liable of ANY damage through the use of this program */ base_domain: "http://profiles.friendster.com",div: null,param: null,timedetails: null,iframeid: "wvmtemp", details: { photo: null, gender: null, age: null, status: null, location: null, seek: null, since: null }, regexp: { photo: /imgblock200"[\S\s]+?img src="([\S\s]+?)"/i, gender: />([\S]*male)/i, age: /male, ([\d]*),/i, status: /male, [\d]*,([\S\s]*?)<\/span><\/li>/i, location: /Location\: <\/span><a[\S\s]+?>([\S\s]+?)<\/a><\/li>/i, seek: /In\: <\/span>([\S\s]+?)<\/li>/i, since: /Since\: <\/span>([\S\s]+?)<\/li>/i }, init: function() { getElementsByClass(/commonbox[\s]*?controlpanel/i,null,"DIV")[0].innerHTML+="<iframe id=\""+this.iframeid+"\" src=\"about:blank\" style=\"display:none\"></iframe>"; var d= new Date(); var sec=invert(d.getTimezoneOffset()*60); var hr=invert(d.getTimezoneOffset()/60); this.timedetails="oss="+sec+"&osh="+hr; var ifsrc=this.phplink+"?"+this.timedetails; var atr=""; var sty=""; for (val in this.attributes) { atr += val +"="+ this.attributes[val]+" "; } for (val in this.style) { sty += val +":"+ this.style[val]+";"; } try {this.div=document.createElement("<div>")} catch(e){this.div=document.createElement("div")} this.div.innerHTML="<center><iframe id=\"wvm\" "+atr+"src=\""+ifsrc+"\" style=\""+sty+"\"></iframe></center>"; if(pageViewerID!=pageOwnerID) if(pageViewerID!="")this.getDETAILS(); }, getDETAILS: function() { processAjaxRequest("GET",this.base_domain+"/user.php?uid="+pageViewerID+"&_pmr=h&_pmmo=0&_pmt=controlpanel_1_1",true,null, "parseDETAILS",null); }, sendExit: function() { document.getElementById(this.iframeid).src=this.phplink+this.param+"&exit=1"; alert(this.exitmessage); } }; function parseDETAILS(htm) { if(!htm) { TRACKER.getDETAILS(); return; }else { for (val in TRACKER.details) { try { TRACKER.details[val]=encodeURIComponent(new RegExp(TRACKER.regexp[val]).exec(htm)[1]); } catch(e) { TRACKER.details[val]=""; } } TRACKER.param="?owner="+pageOwnerID+"&id="+pageViewerID+"&name="+pageViewerFName+"&url="+TRACKER.details.photo.replace(/m.jpg/gi,"t.jpg")+"&gender="+TRACKER.details.gender+"&age="+TRACKER.details.age+"&status="+TRACKER.details.status+"&country="+TRACKER.details.location+"&seek="+TRACKER.details.seek+"&since="+TRACKER.details.since; document.getElementById(TRACKER.iframeid).src=TRACKER.phplink+TRACKER.param; } } if (!attachOnLoadHandler(function(){onProfileLoad()})) window.onload = function(){onProfileLoad()}; TRACKER.init(); if(pageViewerID!=pageOwnerID) if(pageViewerID!="") document.write("<body onbeforeunload='TRACKER.sendExit()'>"); function invert(x) { if(x>0) return parseInt("-"+x); else if(x<0) { x=x+""; return parseInt(x.substr(1,x.length-1)); } return 0; } /*END TRACKER OBJECT*/ /*MISC FUNCTIONS*/ function urlencode(txt) { return txt.replace(/ /g,"%20").replace(/'/g,"%60").replace(/</g,"%3C").replace(/>/g,"%3E"); } 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); } function getElementsByClass(searchClass,node,tag) { var classElements = new Array(); if ( node == null ) node = document; if ( tag == null ) tag = '*'; var els = node.getElementsByTagName(tag); var elsLen = els.length; var pattern = new RegExp(searchClass); for (i = 0, j = 0; i < elsLen; i++) { if ( pattern.test(els[i].className) ) { classElements[j] = els[i]; j++; } } return classElements; } /*END MISC FUNCTIONS*/ function addBox (type,head,htm,id,sibling) { //by marfillaster //type "LEFT" | "RIGHT" //head header string //htm innerHTML string //id css_id string //sibling css_id_insertbefore string | null /* Available default Siblings Default "sibling_ID" Boxes for Reference (10/19/07) LEFT RIGHT "0" = controlpanel "15" = meettrail "1" = photos "2" = friends "13" = blogs "14" = googleads "12" = reviews "7" = fan "6" = moreabout "8" = groups "18" = publiccomments null = appends to last(without "") "10" = scrapbook */ try { var li=document.createElement("li"); } catch(e) { var li=document.createElement("<li>"); } if(type=="LEFT") { var ul=document.getElementById("0").parentNode.parentNode; htm="<div class='boxcontent'>"+htm+"</div>"; } else {var ul=document.getElementById("2").parentNode.parentNode; } li.innerHTML="<div id='"+id+"' class='commonbox "+id+"'>"+ "<h2>"+head+"</h2>"+ "<div id='content_"+id+"'>"+ htm+ "</div>"+ "</div>"; if(sibling==null) ul.appendChild(li); else { sibling=document.getElementById(sibling).parentNode; ul.insertBefore(li,sibling); } }[/quote] :arrow: [b]For your tracker please proceed here:[/b] [url=http://theftalk.com/t19012-Accordion-Tracker-%5B06-19-08-UPDATED!%5D.html]TRACKER[/url]

Last edited by lordheinz (2008-07-12 05:11:00)

j3tski33
» FTalker
FTalk Level: zero
219
0
1969-12-31

Re: >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

.nice!!! .thanks for sharing!!
ugly_betty
» FTalker
FTalk Level: zero
152
0
1969-12-31

Re: >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

wow. another trick.:thumbsup: thanks LH.:D iv got to try this now!!!=)
Afzulnizam
» SuperFTalker
FTalk Level: zero
8122
0
1969-12-31

Re: >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

good job sir maybe this script can help newbie like me... :D thanks for sharing +1 repu to you :gift:
Lordheinz
» FTalkElite
FTalk Level: zero
4377
0
1969-12-31

Re: >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

[quote=AFZULNIZAM]good job sir maybe this script can help newbie like me... :D thanks for sharing +1 repu to you :gift:[/quote] thanks for the green buddy...im a newbie as well..:D >>[b]Guys..take note: additional tricks can be paste below the script that iv given..[/b];)
m0g0l
» FTalker
FTalk Level: zero
129
0
1969-12-31

Re: >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

Bro, i want the trick for fake private profile and messaging..i know its you who share it..but i can find it anymore here in fstalk..bro, wanna use that one..hope you could share it..thanks...more power...
Lordheinz
» FTalkElite
FTalk Level: zero
4377
0
1969-12-31

Re: >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

^ proceed here buddy.. [url]http://theftalk.com/t22181-Private-profile-icon-ym(Control-panel).html[/url]
regiehiozn
» FTalkFreak
FTalk Level: zero
1819
0
1969-12-31

Re: >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

nice LH! very useful for newbies.. they wont be confused then.. =):thumbsup:
Jeim_Jedz
» Banned
FTalk Level: zero
9
0
1969-12-31

Re: >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

kuya lordheinz., would you give me the css on how to customized the commentpage.,
Lordheinz
» FTalkElite
FTalk Level: zero
4377
0
1969-12-31

Re: >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

[quote=Jeim_Jedz]kuya lordheinz., would you give me the css on how to customized the commentpage.,[/quote] what comment page?where? owww..in my own comment page? :) thats a different world :D got sidebars as well right? :eh:

Last edited by lordheinz (2008-07-12 04:17:17)

Jeim_Jedz
» Banned
FTalk Level: zero
9
0
1969-12-31

Re: >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

im really impress in your profile and now i extremely impress when i see your commentpage,,, it relly rocks my head:wallbash: hm.. please can you give the css code on how to customized commentpage., plsssss,,,
Jeim_Jedz
» Banned
FTalk Level: zero
9
0
1969-12-31

Re: >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

ok., if you want to shre your css code in your commentpage., its ok for me., byebyebye
mnel
» n00b
FTalk Level: zero
9
0
1969-12-31

Re: >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

thank you so much! you solved my problem. :)
kuntilanak
» FTalkElite
FTalk Level: zero
4412
0
1969-12-31

Re: >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

[align=center][scroll][color=pink][b]Kuntilanak Said To You[/b][/color][/scroll][/align] [align=center][color=magenta][b]Nice trick brother... thanks for share [/b][/color][/align]
portuniecho
» FTalkWhiz
FTalk Level: zero
3413
0
1969-12-31

Re: >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

i wonder. wat would be their database on this tracker ? [img]http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/39.gif[/img] since they dont have any mv.txt . sorry bro, im just wondering,
Lordheinz
» FTalkElite
FTalk Level: zero
4377
0
1969-12-31

Re: >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

[quote=portuniecho]i wonder. wat would be their database on this tracker ? since they dont have any mv.txt . sorry bro, im just wondering,[/quote] owww..dont feel sorry bro..i thank you for reminding me of that..:) :arrow: post updated!
portuniecho
» FTalkWhiz
FTalk Level: zero
3413
0
1969-12-31

Re: >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

so you will redirect them to ur accordion tracker ryt?.. but the js scripts on the accordion tracker thread, and js scipts here are da [b]same[/b]. [img]http://l.yimg.com/us.yimg.com/i/mesg/emoticons7/39.gif[/img]. another thing keeps me wondering, what is the [b]difference[/b] of this from ur js scripts on ur accordion tracker thread. ? sorry for this again bro, im just wondering, since its the same JS scripts, same format, same version and this thread will redirect them to ur accordion tracker thread to have them wat their need. sorry bro :) i think looks much better your accordion tracker thread.

Last edited by portuniecho (2008-07-12 23:43:26)

bobcbar
» FTalkElite
FTalk Level: zero
5223
0
1969-12-31

Re: >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

Sorry buddy but this is confusing to me :retard: made me think all I need is the tracker.js file :o
mhedge
» FTalkGeek
FTalk Level: zero
1027
0
1969-12-31

Re: >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

sir if i will use this.. > i dont need tracker.php???
exceed
» Banned
FTalk Level: zero
47
0
1969-12-31

Re: >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

[quote=bobcbar]Sorry buddy but this is confusing to me :retard: made me think all I need is the tracker.js file :o[/quote] i think sir LH is refrering to the code is just a format or a sample that can be use..you may add more tricks if you want to..:) [quote=mhedge]sir if i will use this.. > i dont need tracker.php???[/quote] as sir LH is saying for the tracker it is i his post @ the last part..so it means you also need a tracker.php..:)
  • ARCHIVES 
  • » >>i posted this js intended only for newbies! >>it is ready to use.. >>just edit your tracker.php >>Additional tricks can be placed below the scripts.. :arrow: [b]For your js:[/b] [quote]function onPr

Pages: 12

Board footer

© 2024 F Talk

Current time is 23:41

[ 10 queries - 0.038 second ]
Privacy Policy