friendsterTalk - Friendster Forum

friendsterTalk - Friendster Forum

Welcome guest! Please Login or Register.

  • JavaScript
  •  » Viewer's Main Photo [Now Updated!]

#1241  2008-07-20 05:06:39

shemeleiah
» FriendsterTalker
shemeleiah's display avatar
achuchush
Location: Philippines
Registered: 2008-07-17
Posts: 120
Last visit: Today
Reputation: ~
Friendster

Re: Viewer's Main Photo [Now Updated!]

i can't download the js extension..


#1242  2008-07-20 05:25:36

bobcbar
» SuperFriendster
bobcbar's display avatar
Wrist it finally better!
Location: Texas USA
Registered: 2007-04-08
Posts: 9097
Last visit: Today
Reputation: 240
Friendster

Re: Viewer's Main Photo [Now Updated!]

shemeleiah wrote:

i can't download the js extension..

Try again later, feruzz ripway account exceed bandwidth for right now. =)



Sorry but I only understand english

#1243  2008-08-07 20:49:01

KhErMiNaToR
» Retired Moderator
KhErMiNaToR's display avatar
No Problemo..!
Class X
Location: C:\Program Files
Registered: 2007-06-30
Posts: 5233
Reputation: 192
Friendster

Re: Viewer's Main Photo [Now Updated!]

TOPIC RE-OPENED! :thumbsup:

enjoy everybody. :P


#1244  2008-08-07 21:32:40

vetra9
» FriendsterGeek
vetra9's display avatar
.Fashionista.
Location: No Maden
Registered: 2008-03-10
Posts: 1052
Reputation: 32
Friendster

Re: Viewer's Main Photo [Now Updated!]

Thanks For Sharing....:wow:
You Are The Best Mod feruzz :wow:


#1245  2008-08-08 15:22:10

shutmedown
» FriendsterNewbie
☺chaka☺
Location: where
Registered: 2008-07-07
Posts: 17
Last visit: 2008-10-29
Reputation: ~
Friendster

Re: Viewer's Main Photo [Now Updated!]

thank god the code was restored! thanks! a lot!

#1246  2008-08-11 11:33:34

DJPPorras5000
» FriendsterNewbie
DJPPorras5000's display avatar
Location: - UNDER UR BED -
Registered: 2008-07-23
Posts: 22
Last visit: 2008-10-11
Reputation: ~
???

Re: Viewer's Main Photo [Now Updated!]

Thankyou po... ^_^


S|nd|ka†0 of TeaM RockeT

David's Pride the level 169 Zapdos!
Click this if you want to have your own pokemon.>PokePet

#1247  2008-08-12 03:31:41

rjaiuchris
» FriendsterTalker
rjaiuchris's display avatar
Registered: 2007-12-13
Posts: 118
Last visit: 2008-11-09
Reputation: -2
Friendster

Re: Viewer's Main Photo [Now Updated!]

This is really a cool trick...

Thnx for sharing...

where do i can find the
code of viewer floating on the left side????

#1248  2008-08-12 07:18:40

miztahz
» FriendsterAddict
miztahz's display avatar
Hello! ^,~!
Mga Masiyahing Pinoy!
Location: Manila,.
Registered: 2008-07-12
Posts: 349
Last visit: Yesterday
Reputation: 4
Friendster

Re: Viewer's Main Photo [Now Updated!]

:arrow: waw,. love it,. nice trick

my js file is load fast not same to my old code for

Viewer's Main Photo

tnx for this code love it,. :thumbsup:

good job,. =)

more power,. :thumbsup:




#1249  2008-08-14 14:07:43

choyz13
» FriendsterNewbie
Registered: 2008-01-06
Posts: 16
Last visit: 2008-11-15
Reputation: ~

Re: Viewer's Main Photo [Now Updated!]

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

#1250  2008-08-15 23:32:17

kacang`z
» FriendsterElite
kacang`z's display avatar
System of a down
System Of a Down
Location: Gresik City
Registered: 2008-04-22
Posts: 3576
Reputation: 129
Friendster

Re: Viewer's Main Photo [Now Updated!]

nice your topic......
thanks for sharing............. :thumbsup: :thumbsup:


#1251  2008-08-16 14:12:43

java
» FriendsterNewbie
Registered: 2008-07-05
Posts: 29
Last visit: Today
Reputation: ~

Re: Viewer's Main Photo [Now Updated!]

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;
}

#1252  2008-08-16 14:18:29

bobcbar
» SuperFriendster
bobcbar's display avatar
Wrist it finally better!
Location: Texas USA
Registered: 2007-04-08
Posts: 9097
Last visit: Today
Reputation: 240
Friendster

Re: Viewer's Main Photo [Now Updated!]

java wrote:

Where will i put this code,, on my js????????

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.



Sorry but I only understand english

#1253  2008-08-16 14:18:42

alyssamodesto
» FriendsterAddict
alyssamodesto's display avatar
yeah!
Location: philippines
Registered: 2008-03-22
Posts: 529
Last visit: 2008-08-30
Reputation: 2
???

Re: Viewer's Main Photo [Now Updated!]

wow! thank you for sharing! :)



walang taong nagwawala nang wala lang ★
私は独特、エキゾチック別、絶えたである。
friendster layouts by hikarukun
hikarukun's multiply

#1254  2008-08-16 14:22:36

java
» FriendsterNewbie
Registered: 2008-07-05
Posts: 29
Last visit: Today
Reputation: ~

Re: Viewer's Main Photo [Now Updated!]

at last i did it...hahha
it is working,,my fault only..hehe
tnx for the codes!!

#1255  2008-08-30 15:10:26

killxromance
» FriendsterAddict
killxromance's display avatar
Smile mo kita ko :)
Friendstertalk University
Location: . . .
Registered: 2008-07-21
Posts: 454
Last visit: Yesterday
Reputation: 6
Friendster

Re: Viewer's Main Photo [Now Updated!]

nice trick!:thumbsup: thnk's for sharin:D





[ PAG FRIENDSTERTALK UNIVERSITRY KA! ]
[ ARTISTA KA!! ]

:lol:

#1256  2008-08-31 04:13:37

waphax07
» FriendsterNewbie
Registered: 2008-04-27
Posts: 7
Last visit: 2008-11-09
Reputation: ~

Re: Viewer's Main Photo [Now Updated!]

:| the codes in who i want to meet is not there???

#1257  2008-09-02 12:19:25

yankee1989
» FriendsterNewbie
Registered: 2008-09-02
Posts: 2
Last visit: 2008-11-11
Reputation: ~

Re: Viewer's Main Photo [Now Updated!]

anu po b addbox san ilalagay b un? ska tpos nun anu ggwin di ko mgeys pde b un sa overlay

#1258  2008-09-03 23:37:25

suddendeath
» FriendsterFreak
suddendeath's display avatar
Just Do It
.White Protector.
Location: Malaysia
Registered: 2007-12-15
Posts: 1661
Reputation: 45

Re: Viewer's Main Photo [Now Updated!]

waphax07 wrote:

:| the codes in who i want to meet is not there???

da code have....
see carefully.....

yankee1989 wrote:

anu po b addbox san ilalagay b un? ska tpos nun anu ggwin di ko mgeys pde b un sa overlay

please use english language...
read da Rules before posting...


#1259  2008-09-06 02:12:48

brentda
» FriendsterManiac
brentda's display avatar
~one love...undivided~
.Fashionista.
Location: malaysia
Registered: 2008-04-30
Posts: 644
Last visit: 2008-11-19
Reputation: 27
Friendster

Re: Viewer's Main Photo [Now Updated!]

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...

feruzz wrote:

JS extension >> Download Here

i dont understand this part...=(

what should i do with it?


#1260  2008-09-06 05:14:29

DarkEffulgence
» FriendsterNewbie
DarkEffulgence's display avatar
the exalted one.
Location: OBLIVION CASTLE
Registered: 2008-08-30
Posts: 17
Last visit: 2008-09-29
Reputation: ~

Re: Viewer's Main Photo [Now Updated!]

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


~cheesecaaake! :3
  • JavaScript
  •  » Viewer's Main Photo [Now Updated!]

Search Friendstertalk

Board footer

FriendsterTalk is not affiliated with Friendster.com
Copyright © 2002–2008 PunBB

[ 31 queries - 0.525 second ]

Pay Per Click Ads by pay per click advertising by Kontera

FriendsterTalk.com x

Welcome to FriendsterTalk! You'll need to login in order to fully use all the features and view all the sections of this site.

Please register if you're not yet a member. =)