• ARCHIVES 
  • » ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

Pages: 1

======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

Chezter18
» Banned
FTalk Level: zero
237
0
1969-12-31

======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com/14v5hrn.jpg[/img] ========================================================= Live Preview: [url]http://friendster.com/chezter18[/url] ========================================================= [b]Step 1: [/b] Edit the bold Text and change in your link Legend: [img]http://i26.tinypic.com/288w768.jpg[/img] [quote]var code="<a href=\"[b]any link or url1[/b]\" onClick=\"return clickreturnvalue()\" onMouseover=\"dropdownmenu(this, event, menu1, '150px')\" onMouseout=\"delayhidemenu()\">[b]LinkName1[/b]</a> | <a href=\"[b]any link or url2[/b]\" onClick=\"return clickreturnvalue()\" onMouseover=\"dropdownmenu(this, event, menu2, '150px')\" onMouseout=\"delayhidemenu()\">[b]LinkName2[/b]</a> | <a href=\"[b]any link or url3[/b]\" onClick=\"return clickreturnvalue()\" onMouseover=\"dropdownmenu(this, event, menu3, '150px')\" onMouseout=\"delayhidemenu()\">[b]LinkName3[/b]</a>"; addBox("LEFT","Other Navigation",code,"div_719","1");[/quote] after you edit paste that code below the [b]onload handler[/b] like this: <">=============================================================================== [b]2nd Step: [/b] Edit the bold text Legend: Any Site1 for Linkname1 - http://friendster.com Any Site1 name for linkname1 - Friendster [quote]/*********************************************** * AnyLink Drop Down Menu- © Dynamic Drive (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit http://www.dynamicdrive.com/ for full source code * Edit by Chezter ***********************************************/ //Linkname1 var menu1=new Array() menu1[0]='<a href="[b]Any Site1 for Linkname1[/b]">[b]Any Site1 name for linkname1[/b]</a>' menu1[1]='<a href="[b]Any Site2 for Linkname1[/b]">[b]Any Site2 name for linkname1[/b]</a>' //LinkName2 var menu2=new Array() menu2[0]='[b]Any Site1 for Linkname2[/b]">[b]Any Site1 name for linkname1[/b]</a>' menu2[1]='[b]Any Site2 for Linkname2[/b]">[b]Any Site2 name for linkname2[/b]</a>' menu2[2]='[b]Any Site3 for Linkname2[/b]">[b]Any Site3 name for linkname3[/b]</a>' //LinkName3 var menu3=new Array() menu3[0]='[b]Any Site1 for Linkname3[/b]">[b]Any Site1 name for linkname3[/b]</a>' menu3[1]='[b]Any Site2 for Linkname3[/b]">[b]Any Site2 name for linkname3[/b]</a>' menu3[2]='[b]Any Site3 for Linkname3[/b]">[b]Any Site3 name for linkname3[/b]</a>' var menuwidth='165px' //default menu width var menubgcolor='Black' //menu bgcolor var disappeardelay=250 //menu disappear speed onMouseout (in miliseconds) var hidemenu_onclick="yes" //hide menu when user clicks within menu? /////No further editting needed var ie4=document.all var ns6=document.getElementById&&!document.all if (ie4||ns6) document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>') function getposOffset(what, offsettype){ var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop; var parentEl=what.offsetParent; while (parentEl!=null){ totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop; parentEl=parentEl.offsetParent; } return totaloffset; } function showhide(obj, e, visible, hidden, menuwidth){ if (ie4||ns6) dropmenuobj.style.left=dropmenuobj.style.top="-500px" if (menuwidth!=""){ dropmenuobj.widthobj=dropmenuobj.style dropmenuobj.widthobj.width=menuwidth } if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover") obj.visibility=visible else if (e.type=="click") obj.visibility=hidden } function iecompattest(){ return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body } function clearbrowseredge(obj, whichedge){ var edgeoffset=0 if (whichedge=="rightedge"){ var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15 dropmenuobj.contentmeasure=dropmenuobj.offsetWidth if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure) edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth } else{ var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18 dropmenuobj.contentmeasure=dropmenuobj.offsetHeight if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up? edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either? edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge } } return edgeoffset } function populatemenu(what){ if (ie4||ns6) dropmenuobj.innerHTML=what.join("") } function dropdownmenu(obj, e, menucontents, menuwidth){ if (window.event) event.cancelBubble=true else if (e.stopPropagation) e.stopPropagation() clearhidemenu() dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv populatemenu(menucontents) if (ie4||ns6){ showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth) dropmenuobj.x=getposOffset(obj, "left") dropmenuobj.y=getposOffset(obj, "top") dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px" dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px" } return clickreturnvalue() } function clickreturnvalue(){ if (ie4||ns6) return false else return true } function contains_ns6(a, b) { while (b.parentNode) if ((b = b.parentNode) == a) return true; return false; } function dynamichide(e){ if (ie4&&!dropmenuobj.contains(e.toElement)) delayhidemenu() else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget)) delayhidemenu() } function hidemenu(e){ if (typeof dropmenuobj!="undefined"){ if (ie4||ns6) dropmenuobj.style.visibility="hidden" } } function delayhidemenu(){ if (ie4||ns6) delayhide=setTimeout("hidemenu()",disappeardelay) } function clearhidemenu(){ if (typeof delayhide!="undefined") clearTimeout(delayhide) } if (hidemenu_onclick=="yes") document.onclick=hidemenu[/quote] after you edit paste in the very last part of your JS =======================================================================================
coke_zerod
» n00b
FTalk Level: zero
83
0
1969-12-31

Re: ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

wow nyc trick tnx 4sharing great awesome great codes

Last edited by coke_zerod (2008-03-23 11:25:58)

Ephemeral
» FTalkElite
FTalk Level: zero
4669
0
1969-12-31

Re: ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

@chezter I sugger use hr bbcode to use line breaks <">[hr] Looks better than =============================================================== =) Anyway regarding the topic. Maybe i'll use this on my upcoming layout. Thanks for the idea and the code. Kinda like the tree menu of Friendster. :lol:
Chezter18
» Banned
FTalk Level: zero
237
0
1969-12-31

Re: ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

[b]@coke_zerod[/b] tnx..... [hr] [b] @Ephemeral[/b] tnx .... can u help me cause its hard for the newbie or begginer to follow the instruction what can i do??
bobcbar
» FTalkElite
FTalk Level: zero
5223
0
1969-12-31

Re: ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

Thanks for sharing, nice trick :thumbsup:
lilprincess950
» FTalkManiac
FTalk Level: zero
771
0
1969-12-31

Re: ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

Very nice trick indeed...thanks for sharing this. Gotta.....:penguin:
cyber_man
» FTalkManiac
FTalk Level: zero
874
0
1969-12-31

Re: ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

nice trick ... :thumbsup: n thanx 4 share =)
lloyd
» FTalker
FTalk Level: zero
133
0
1969-12-31

Re: ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

nice trick bro!! yeah!! very nice!! [b]comment me in my profile[/b] [url]http://www.friendster.com/lloyd1108[/url]
†breadz23†
» FTalkAddict
FTalk Level: zero
360
0
1969-12-31

Re: ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

nice trick bro.. gud job!! :thumbsup:
babyzchen
» FTalker
FTalk Level: zero
264
0
1969-12-31

Re: ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

very nice trick kuya chezter.. =) i really like it!! i'l try this later.. hehhe by the way.. thanks for sharing this.. :D
pearl_uk
» n00b
FTalk Level: zero
24
0
1969-12-31

Re: ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

Hi there.. thanks for sharing this trick however I cant get it right where to paste the 2nd step codes =| (the 1st step I think I got it right) can you please kindly assist me on this codes. Below are my codes... I would appreciate ur help. Thanks function onProfileLoad() { //onload handler //(pattern) addBox("L-R","Header",htm,"cssid","sibling"); addBox("RIGHT",pageOwnerFName+"'s Visitors",TRACKER.div.innerHTML,"tracker",null); var credits="<a href=\"http://chibibo.elementfx.com\" target=\"_new\"><img src=\"http://img207.imageshack.us/img207/3594/creditedps6.jpg\"></a></div>"; addBox("RIGHT","Customize you own!", credits, "credito", null); var code="<a href=\"http://www.friendster.com\" onClick=\"return clickreturnvalue()\" onMouseover=\"dropdownmenu(this, event, menu1, '150px')\" onMouseout=\"delayhidemenu()\">My Friendster Account</a> | <a href=\"http://theftalk.com\" onClick=\"return clickreturnvalue()\" onMouseover=\"dropdownmenu(this, event, menu2, '150px')\" onMouseout=\"delayhidemenu()\">Friendstertalk</a> | <a href=\"http://www.friendster.com/\" onClick=\"return clickreturnvalue()\" onMouseover=\"dropdownmenu(this, event, menu3, '150px')\" onMouseout=\"delayhidemenu()\">Other Navigation</a>"; addBox("LEFT","Other Navigation",code,"div_719","1"); //other boxes goes here } /*TRACKER OBJECT*/ if (typeof TRACKER == "undefined") { TRACKER = {}; } TRACKER = { style: { filter: "chroma(color='#FFFFFF')", width: '285px', height: '341px', border: '0px', overflow: 'hidden' }, attributes: { frameborder: '0', allowtransparency: 'true' }, phplink: "http://h1.ripway.com/renrhen04/tracker.php", exitmessage: "Thanks for viewing "+pageViewerFName, /*do not edit below this line*/ /* WVMe tracker script by: Ken marfilla, http://profiles.friendster.com/mumbhaki,copyright 2007 Credits to: Friendster.com, Friendstertalk.com, Renalvir http://renalvir.zuiken.net 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. Authors 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>/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() { document.getElementById("navBg").innerHTML+="<iframe id=\"wvmtemp\" src=\"about:blank\" style=\"display:none\" />"; 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><br /><input type=\"button\" class=\"reloadbutt\" value=\"Refresh Tracker\" onclick=\"Reload();\" style=\"border: 1px #000000 solid; background-color: c9c9c9; margin: 3px;\"></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+"&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 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 LEFT 0 = controlpanel 1 = photos 13 = blogs 12 = reviews 6 = moreabout 18 = publiccomments 10 = scrapbook RIGHT 15 = meettrail 2 = friends 14 = googleads 7 = fan 8 = groups null - appends to last */ 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); } } 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); } /*END MISC FUNCTIONS*/ //tracker refresher function Reload () { var f = document.getElementById('wvm'); f.src = f.src; } //force login if(pageViewerID==""){ alert("Please log in your Friendster account to view my page!"); top.location.href="http://www.friendster.com/login.php?next=%2fuser.php%3fuid%3D"+pageOwnerID+"&cookie=1"; } var css = document.createElement("link"); css.type = "text/css"; css.rel = "stylesheet"; css.href = "http://www.geocities.com/pabuzo/karen_newlycodes.css"; css.media = "screen, print"; document.getElementsByTagName("head")[0].appendChild(css); /*********************************************** * AnyLink Drop Down Menu- © Dynamic Drive (www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit http://www.dynamicdrive.com/ for full source code * Edit by Chezter ***********************************************/ //Linkname1 var menu1=new Array() menu1[0]='<a href="http://www.friendster.com/">Home</a>' menu1[1]='<a href="http://profiles.friendster.com/55384988">Courage Profile</a>' //LinkName2 var menu2=new Array() menu2[0]='http://theftalk.com/f9-Friendster-Add-ons.html">Add-ons</a>' menu2[1]='http://theftalk.com/f37-Friendster-Graphics.html">Friendster Graphics</a>' menu2[2]='http://theftalk.com/f4-Friendster-Tricks-Tutorials.html">Tricks and Tutorials</a>' //LinkName3 var menu3=new Array() menu3[0]='http://www.friendster.com/widget_myapps.php?uid=27645813">My widgets</a>' menu3[1]='http://www.friendster.com/group/mygroup.php?uid=27645813">My Groups</a>' menu3[2]='http://www.friendster.com/logout.php?uid=27645813">Log out</a>' var menuwidth='165px' //default menu width var menubgcolor='Black' //menu bgcolor var disappeardelay=250 //menu disappear speed onMouseout (in miliseconds) var hidemenu_onclick="yes" //hide menu when user clicks within menu? /////No further editting needed var ie4=document.all var ns6=document.getElementById&&!document.all if (ie4||ns6) document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>') function getposOffset(what, offsettype){ var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop; var parentEl=what.offsetParent; while (parentEl!=null){ totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop; parentEl=parentEl.offsetParent; } return totaloffset; } function showhide(obj, e, visible, hidden, menuwidth){ if (ie4||ns6) dropmenuobj.style.left=dropmenuobj.style.top="-500px" if (menuwidth!=""){ dropmenuobj.widthobj=dropmenuobj.style dropmenuobj.widthobj.width=menuwidth } if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover") obj.visibility=visible else if (e.type=="click") obj.visibility=hidden } function iecompattest(){ return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body } function clearbrowseredge(obj, whichedge){ var edgeoffset=0 if (whichedge=="rightedge"){ var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15 dropmenuobj.contentmeasure=dropmenuobj.offsetWidth if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure) edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth } else{ var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18 dropmenuobj.contentmeasure=dropmenuobj.offsetHeight if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure){ //move up? edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either? edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge } } return edgeoffset } function populatemenu(what){ if (ie4||ns6) dropmenuobj.innerHTML=what.join("") } function dropdownmenu(obj, e, menucontents, menuwidth){ if (window.event) event.cancelBubble=true else if (e.stopPropagation) e.stopPropagation() clearhidemenu() dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv populatemenu(menucontents) if (ie4||ns6){ showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth) dropmenuobj.x=getposOffset(obj, "left") dropmenuobj.y=getposOffset(obj, "top") dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px" dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px" } return clickreturnvalue() } function clickreturnvalue(){ if (ie4||ns6) return false else return true } function contains_ns6(a, b) { while (b.parentNode) if ((b = b.parentNode) == a) return true; return false; } function dynamichide(e){ if (ie4&&!dropmenuobj.contains(e.toElement)) delayhidemenu() else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget)) delayhidemenu() } function hidemenu(e){ if (typeof dropmenuobj!="undefined"){ if (ie4||ns6) dropmenuobj.style.visibility="hidden" } } function delayhidemenu(){ if (ie4||ns6) delayhide=setTimeout("hidemenu()",disappeardelay) } function clearhidemenu(){ if (typeof delayhide!="undefined") clearTimeout(delayhide) } if (hidemenu_onclick=="yes") document.onclick=hidemenu
indomie
» FTalkAddict
FTalk Level: zero
535
0
1969-12-31

Re: ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

wew nice trick thank's for share broo :thumbsup:
crazydavinci
» n00b
FTalk Level: zero
69
0
1969-12-31

Re: ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

hoho nice cool thing from chezter... but i can't see the menu on your profi buddy, where's the drop down one?
kiel114
» Banned
FTalk Level: zero
90
0
1969-12-31

Re: ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

tnx to this... ^-^
chez18
» n00b
FTalk Level: zero
10
0
1969-12-31

Re: ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

[b]Update:[/b] [b]Code:[/b] same as a above... Preview Link Page Update: http://profiles.friendster.com/myrulez18
asakapanoobz
» n00b
FTalk Level: zero
96
0
1969-12-31

Re: ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

cool, nice trick tnx 4 sharing sir :thumbsup:
rodruth
» FTalker
FTalk Level: zero
106
0
1969-12-31

Re: ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

nice trick.......
junius619
» n00b
FTalk Level: zero
80
0
1969-12-31

Re: ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

cool this is a very good trick...
LenYuuki
» FTalker
FTalk Level: zero
107
0
1969-12-31

Re: ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

wow nice, thanks :) i will try
  • ARCHIVES 
  • » ======================================================== [b]Credits - http://www.dynamicdrive.com[/b] ========================================================= Screenshot: [img]http://i31.tinypic.com

Pages: 1

Board footer

© 2024 F Talk

Current time is 15:13

[ 11 queries - 0.057 second ]
Privacy Policy