• 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

shemeleiah
» FTalker
FTalk Level: zero
118
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 can't download the js extension..
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=shemeleiah]i can't download the js extension..[/quote] Try again later, feruzz ripway account exceed bandwidth for right now. =)
KhErMiNaToR
» FTalkAgent
FTalk Level: zero
2112
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]TOPIC RE-OPENED![/b] :thumbsup: enjoy everybody. :P
vetra9
» FTalkGeek
FTalk Level: zero
1468
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 Sharing....:wow: You Are The Best Mod feruzz :wow:
shutmedown
» n00b
FTalk Level: zero
43
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 god the code was restored! thanks! a lot!
DJPPorras5000
» n00b
FTalk Level: zero
19
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

Thankyou po... ^_^
rjaiuchris
» n00b
FTalk Level: zero
68
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 is really a cool trick... Thnx for sharing... where do i can find the code of viewer floating on the left side????
miztahz
» FTalker
FTalk Level: zero
228
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

:arrow: waw,. love it,. nice trick my js file is load fast not same to my old code for [quote]Viewer's Main Photo[/quote] tnx for this code love it,. :thumbsup: good job,. =) more power,. :thumbsup:
choyz13
» n00b
FTalk Level: zero
16
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 ferruzz - how to change the font color of the texts it seems it is not included in the codes coz i can't find it there. obviously not in the css part, its for the image ryt. pls help..noobie..tnxx...VIEWER'S MAIN PHOTO at SIDEBAR
kacang`z
» FTalkWhiz
FTalk Level: zero
Some FTalkers ♥ My Threads!
2662
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

nice your topic...... thanks for sharing............. :thumbsup: :thumbsup:
java
» n00b
FTalk Level: zero
27
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

in the Viewer's Main Photo at sidebar!!!! Where will i put this code,, on my js???????? function addBox(head,code,id,siblingafter) { //By marfillaster /* head: html string title null - no header bar code: html string content id: unique string css pointer siblingafter: regexp classname 'left' - mainbar column end 'right' - sidebar column end */ try { var li=document.createElement("li"); } catch(e) { var li=document.createElement("<li>"); } if(!head) head=""; else head="<h2>"+head+"</h2>"; li.innerHTML="<div id=\""+id+"\" class=\"commonbox "+id+"\">"+ head+ "<div id=\"content_"+id+"\">"+ code+ "</div>"+ "</div>"; if(siblingafter=="left") getElementsByClass(/commonbox[\s]*?controlpanel/i,null,"DIV")[0].parentNode.parentNode.appendChild(li); else if(siblingafter=="right") getElementsByClass(/commonbox[\s]*?friends/i,null,"DIV")[0].parentNode.parentNode.appendChild(li); else { var si=getElementsByClass(siblingafter,null,"DIV")[0]; si.parentNode.parentNode.insertBefore(li,si.parentNode); } } 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; }
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=java]Where will i put this code,, on my js????????[/quote] If you already are using js with the addbox function you do not need this code. Just add the js codes for the viewers main pic to the bottom of ur current js file.
alyssamodesto
» FTalker
FTalk Level: zero
216
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

[color=purple]wow! thank you for sharing! :)[/color]
java
» n00b
FTalk Level: zero
27
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

at last i did it...hahha it is working,,my fault only..hehe tnx for the codes!!
killxromance
» FTalkAddict
FTalk Level: zero
315
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

nice trick!:thumbsup: thnk's for sharin:D
waphax07
» n00b
FTalk Level: zero
7
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

:| the codes in who i want to meet is not there???
yankee1989
» n00b
FTalk Level: zero
1
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

anu po b addbox san ilalagay b un? ska tpos nun anu ggwin di ko mgeys pde b un sa overlay
suddendeath
» Banned
FTalk Level: zero
956
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=waphax07]:| the codes in who i want to meet is not there???[/quote] da code have.... see carefully..... [quote=yankee1989]anu po b addbox san ilalagay b un? ska tpos nun anu ggwin di ko mgeys pde b un sa overlay[/quote] please use english language... read da Rules before posting...
brentda
» FTalkAddict
FTalk Level: zero
567
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

did this code works for css? i paste them in my css but its not appearin...=( i'm using the who i want to meet method... [quote=feruzz]JS extension >> Download Here[/quote] i dont understand this part...=( what should i do with it?
DarkEffulgence
» n00b
FTalk Level: zero
21
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

awesome code :]] it worked pretty well. :D:thumbsup: thanks a lot 4 sharing. Just wondering.. Is it possible to specify the dimensions of the photo thats going to appear? In my case..I dont want the viewer's main photo to appear in its actual size. I want to kinda resize it. :D: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 18:18

[ 10 queries - 0.112 second ]
Privacy Policy