friendsterTalk - Friendster Forum

friendsterTalk - Friendster Forum

Welcome guest! Please Login or Register.

#1  2008-02-07 05:04:51

switpotato
» FriendsterWhiz
switpotato's display avatar
dcrazier dbetter bxtreme
Class X
Location: HubbieHubbieLand
Registered: 2007-05-23
Posts: 2981
Reputation: 285

Add Box Short Script

function addbox(){
x1=document.createElement("div");
x1.id="playlist";
document.getElementById("0").parentNode.appendChild(x1);
playlist.innerHTML="<h2>My Playlist</h2>"
+"COMPLETE EMBED CODE HERE / CHATBOX / SLIDE WHATEVER"
}
setTimeout("addbox()",1000)

just remember to change the double quote " to single '
eg:
if the width= "500" change it to width= '500'

if u want to reposition it just change the getelementById ("0")
to any number that correspond the box u want it to appear

if u want to apply css use the id u use for ur addbox
in the code presented it uses playist as the id
thus the css will be like this:

#playlist {margin-bottom: 40px! important; border etc etc}
#playlist h2 { text-align:center! important; font etc etc! important}

if u wish to add more box just repeat the process

function addbox(){
x1=document.createElement("div");
x1.id="playlist";
document.getElementById("0").parentNode.appendChild(x1);
playlist.innerHTML="<h2>My Playlist</h2>"
+"COMPLETE EMBED CODE HERE / SLIDE WHATEVER"
x2=document.createElement("div");
x2.id="anotherekek";
document.getElementById("0").parentNode.appendChild(x2);
anotherekek.innerHTML="<h2>My Ewan</h2>"
+"COMPLETE EMBED CODE HERE / SLIDE WHATEVER"

}
setTimeout("addbox()",1000)

for ie user u may remove the
function and setTimeout
eg:

x1=document.createElement("div");
x1.id="playlist";
document.getElementById("0").parentNode.appendChild(x1);
playlist.innerHTML="<h2>My Playlist</h2>"
+"COMPLETE EMBED CODE HERE / CHATBOX / SLIDE WHATEVER"

code provided by: ~ ArchAngell ~

Last edited by switpotato (2008-05-01 12:53:14)


   
my official site>>    http://switpotato.ucoz.com/
Ive juz realized.. many peepz r such a user..
to all affected with this have a lil delicadeza..remove
my works from ur site... u r selfish ... who knows how to get
but never know how to give.. puro sarili inintindi nyo!!

#2  2008-02-07 05:06:49

regiehiozn
» FriendsterWhiz
regiehiozn's display avatar
friendship :]
Location: your place
Registered: 2007-08-27
Posts: 3055
Reputation: 79
Friendster

Re: Add Box Short Script

oh.. ur good with short scripts.. hehe:D

#3  2008-02-07 05:15:38

cklahrckiey
» FriendsterFreak
cklahrckiey's display avatar
Tha Mafia
Class-S
Location: Lea's Heart
Registered: 2007-11-21
Posts: 1715
Reputation: 34

Re: Add Box Short Script

is this compatible to al browsers? =|




"You hit me, we hit you!"

#4  2008-02-07 05:17:57

switpotato
» FriendsterWhiz
switpotato's display avatar
dcrazier dbetter bxtreme
Class X
Location: HubbieHubbieLand
Registered: 2007-05-23
Posts: 2981
Reputation: 285

Re: Add Box Short Script

yep.... thats why i indicate for ie u  may remove this...


   
my official site>>    http://switpotato.ucoz.com/
Ive juz realized.. many peepz r such a user..
to all affected with this have a lil delicadeza..remove
my works from ur site... u r selfish ... who knows how to get
but never know how to give.. puro sarili inintindi nyo!!

#5  2008-02-07 05:25:41

Lordheinz
» Banned
^ trashed
Registered: 2007-06-26
Posts: 5178
Last visit: 2008-09-11
Reputation: 242

Re: Add Box Short Script

another wonderful script swit..thank you so much for sharing... =)


Thank you so much FRIENDSTERTALK...

#6  2008-02-07 06:58:09

sahabat.peterpan
» SuperFriendster
sahabat.peterpan's display avatar
Rockstars
Registered: 2007-10-31
Posts: 8431
Reputation: 58

Re: Add Box Short Script

Thanks for share.. =)  :thumbsup:


#7  2008-02-08 01:28:39

bles_212000
» FriendsterWhiz
bles_212000's display avatar
gray mushroom
.White Protector.
Location: LOST
Registered: 2007-09-25
Posts: 3401
Reputation: 145

Re: Add Box Short Script

wahaha! so many short script! love it.. :wow:  thanks for it swit!  :thumbsup:

Last edited by bles_212000 (2008-02-08 01:30:15)


#8  2008-02-08 01:38:33

dale
» Moderator
dale's display avatar
Clique Mee
Location: G.Lagro.subd.
Registered: 2007-05-24
Posts: 7196
Last visit: 2008-11-29
Reputation: 67
Friendster

Re: Add Box Short Script

thanks swit.. :kiss:


#9  2008-02-08 04:02:19

dreamcaster
» FriendsterTalker
dreamcaster's display avatar
The dREaMeR
Location: Hidden DaRK Vil
Registered: 2007-08-03
Posts: 212
Last visit: 2008-11-29
Reputation: 2
Friendster

Re: Add Box Short Script

wow!!great :eh:  :thumbsup:

asking...

#playlist {style here! important; etc etc}
#playlist h2 { style here! important; etc etc}

paste it in css???


x1=document.createElement("div");
x1.id="playlist";
document.getElementById("0").parentNode.appendChild(x1);
playlist.innerHTML="<h2>My Playlist</h2>"
+"complete embed code here / chatbox / slide whatever"

and this for j.s??? :redface:


#10  2008-02-08 04:08:21

dale
» Moderator
dale's display avatar
Clique Mee
Location: G.Lagro.subd.
Registered: 2007-05-24
Posts: 7196
Last visit: 2008-11-29
Reputation: 67
Friendster

Re: Add Box Short Script

css ext.

Code:

#playlist {style here! important; etc etc}
#playlist h2 { style here! important; etc etc}

js ext.

Code:

x1=document.createElement("div");
x1.id="playlist";
document.getElementById("0").parentNode.appendChild(x1);
playlist.innerHTML="<h2>My Playlist</h2>"
+"complete embed code here / chatbox / slide whatever"

#11  2008-02-08 04:41:55

bobcbar
» SuperFriendster
bobcbar's display avatar
Location: Texas USA
Registered: 2007-04-08
Posts: 9307
Last visit: Yesterday
Reputation: 252
Friendster

Re: Add Box Short Script

Thanks again for sharing even more short and simple codes  :rose:  =)


#12  2008-02-09 04:34:39

dreamcaster
» FriendsterTalker
dreamcaster's display avatar
The dREaMeR
Location: Hidden DaRK Vil
Registered: 2007-08-03
Posts: 212
Last visit: 2008-11-29
Reputation: 2
Friendster

Re: Add Box Short Script

thanks dale!! =)  :thumbsup:  and also 4 swit....

Last edited by dreamcaster (2008-02-09 04:35:08)


#13  2008-02-09 19:52:07

ameng
» FriendsterNewbie
Registered: 2007-12-06
Posts: 69
Last visit: 2008-11-16
Reputation: ~

Re: Add Box Short Script

I tried this amazing codes, but how do i add the border to my new box?

#14  2008-02-10 00:39:47

switpotato
» FriendsterWhiz
switpotato's display avatar
dcrazier dbetter bxtreme
Class X
Location: HubbieHubbieLand
Registered: 2007-05-23
Posts: 2981
Reputation: 285

Re: Add Box Short Script

if u want to apply css use the id u use for ur addbox
in the code presented it uses playist as the id
thus the css will be like this:

#playlist {style here! important; etc etc}
#playlist h2 { style here! important; etc etc}


   
my official site>>    http://switpotato.ucoz.com/
Ive juz realized.. many peepz r such a user..
to all affected with this have a lil delicadeza..remove
my works from ur site... u r selfish ... who knows how to get
but never know how to give.. puro sarili inintindi nyo!!

#15  2008-02-10 03:00:13

flint_hydz
» FriendsterGeek
flint_hydz's display avatar
Knights of the Round
Rockstars
Location: Island Kurakuriko
Registered: 2007-06-23
Posts: 1209
Last visit: Yesterday
Reputation: 35
Friendster

Re: Add Box Short Script

like this?

Code:

#playlist {border: 2px solid #000000; !important;}

:question:




^ I Love Her So Much ^

#16  2008-02-10 03:46:42

switpotato
» FriendsterWhiz
switpotato's display avatar
dcrazier dbetter bxtreme
Class X
Location: HubbieHubbieLand
Registered: 2007-05-23
Posts: 2981
Reputation: 285

Re: Add Box Short Script

flint_hydz wrote:

like this?

Code:

#playlist {border: 2px solid #000000; !important;}

:question:

#playlist {border: 2px solid #000000!  important;}


   
my official site>>    http://switpotato.ucoz.com/
Ive juz realized.. many peepz r such a user..
to all affected with this have a lil delicadeza..remove
my works from ur site... u r selfish ... who knows how to get
but never know how to give.. puro sarili inintindi nyo!!

#17  2008-02-10 13:50:12

adsbeh
» FriendsterTalker
adsbeh's display avatar
be mine
Location: beside you
Registered: 2007-10-04
Posts: 164
Last visit: 2008-10-30
Reputation: 2
Friendster

Re: Add Box Short Script

is this working?


#18  2008-02-13 05:13:20

ameng
» FriendsterNewbie
Registered: 2007-12-06
Posts: 69
Last visit: 2008-11-16
Reputation: ~

Re: Add Box Short Script

:arrow:  How about if i want to add more boxes? Can anybody show the full codes? thank you~
:arrow:  I tried the codes but the new addbox seems to combine with the box below. so how?

Last edited by ameng (2008-02-13 05:42:14)

#19  2008-02-13 07:31:20

switpotato
» FriendsterWhiz
switpotato's display avatar
dcrazier dbetter bxtreme
Class X
Location: HubbieHubbieLand
Registered: 2007-05-23
Posts: 2981
Reputation: 285

Re: Add Box Short Script

ameng wrote:

:arrow:  How about if i want to add more boxes? Can anybody show the full codes? thank you~
:arrow:  I tried the codes but the new addbox seems to combine with the box below. so how?

1st:
to add more then repeat the process
eg :

function addbox(){
x1=document.createElement("div");
x1.id="playlist";
document.getElementById("0").parentNode.appendChild(x1);
playlist.innerHTML="<h2>My Playlist</h2>"
+"complete embed code here / chatbox / slide whatever"
x1=document.createElement("div");
x1.id="anotherekek";
document.getElementById("ur area here").parentNode.appendChild(x1);
anotherekek.innerHTML="<h2>My Ewan</h2>"
+"complete embed code here / chatbox / slide whatever"

}
setTimeout("addbox()",1000)

2nd:
just simply add margin-bottom:__px!important; to ur css...depending to the id u use ...

@ dimee.. dont spam pls.. wakoko put away ur finger tips from ur keyboard if u cant really express ur tot..
@ i forgot... dont asked if its working try it first before u complain okie...
just a word of wisdom wakoko ... oppsie advice i may say

Last edited by switpotato (2008-02-13 07:39:32)


   
my official site>>    http://switpotato.ucoz.com/
Ive juz realized.. many peepz r such a user..
to all affected with this have a lil delicadeza..remove
my works from ur site... u r selfish ... who knows how to get
but never know how to give.. puro sarili inintindi nyo!!

#20  2008-02-13 07:45:31

Nooby_myke
» FriendsterTalker
Nooby_myke's display avatar
Cursed To Death
Location: Baguio
Registered: 2007-04-14
Posts: 256
Last visit: 2008-12-02
Reputation: 2
Friendster

Re: Add Box Short Script

nice short codes you hav there! :D


thanks for sharing wid us =)


۞  MGA TAMBAYAN KOH  ۞
۩۞۩ rakista ۩۞۩
۩۞۩ pudzone ۩۞۩
۩۞۩ markyctrigger ۩۞۩
۩۞۩ cookiemuncher ۩۞۩
۩۞۩ chibib0 ۩۞۩

Search Friendstertalk

Board footer

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

[ 31 queries - 1.009 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. =)