whats the code to make a pop up?

Need help with the site/forum/pets? Ask questions and get help from other members here.

whats the code to make a pop up?

Postby Meggy-Jay » Sun Jan 04, 2009 2:36 pm

people i hate it how you lock the topic i have a question

<SCRIPT language="JavaScript">alert("Your text here") </SCRIPT>
<BODY onUnload="alert('Your text here');">

that does not work it just is a post like that and nothing pops up is there another trick?
Click Here For Available 08' VR Auction Pets!
*Send bids with the word bid!
*You do not need to bid on all!
*Auto win any pet with a 08' Christmas Angel dog!
User avatar
Meggy-Jay
 
Posts: 1108
Joined: Thu Dec 18, 2008 8:21 am
My pets
My items
My wishlist
My gallery
My scenes
My dressups
Trade with me

Re: whats the code to make a pop up?

Postby Nick » Sun Jan 04, 2009 7:07 pm

You cannot make things pop up with BBCode in the forums, if that's what you're asking. BBCode just isn't powerful enough.
User avatar
Nick
Admin
 
Posts: 6338
Joined: Thu Jul 03, 2008 2:40 pm
My pets
My items
My wishlist
My gallery
My scenes
My dressups
Trade with me

Re: whats the code to make a pop up?

Postby Saviir » Sun Jan 04, 2009 9:20 pm

I bet you could, If an admin had put it in the BBCode System, so It would be something like;
BBCode Version;
Code: Select all
[popin]Text Here[/popin]
[popout][/popout]

HTML Code Version;
Code: Select all
<SCRIPT language="JavaScript">alert("Your text here") </SCRIPT>
<BODY onUnload="alert('Your text here');">


I might add that to my site/suggest to my friend's forum. Hmm...
Image
My life is now a living Nightmare,
Wondering what went Wrong.
All the people stop and Stare,
To see the horror I've Become.




Clicks?
Image Image Image Image Image
Image







Image Image Image Image Image Image
User avatar
Saviir
 
Posts: 187
Joined: Tue Nov 18, 2008 2:31 pm
My pets
My items
My wishlist
My gallery
My scenes
My dressups
Trade with me

Re: whats the code to make a pop up?

Postby Meggy-Jay » Mon Jan 05, 2009 2:33 am

do these work on freewebs or on hand made sites
Click Here For Available 08' VR Auction Pets!
*Send bids with the word bid!
*You do not need to bid on all!
*Auto win any pet with a 08' Christmas Angel dog!
User avatar
Meggy-Jay
 
Posts: 1108
Joined: Thu Dec 18, 2008 8:21 am
My pets
My items
My wishlist
My gallery
My scenes
My dressups
Trade with me

Re: whats the code to make a pop up?

Postby Saviir » Mon Jan 05, 2009 10:17 am

HTML WILL WORK on freewebs. And on handmade HTML sites, they will work aswel.
Image
My life is now a living Nightmare,
Wondering what went Wrong.
All the people stop and Stare,
To see the horror I've Become.




Clicks?
Image Image Image Image Image
Image







Image Image Image Image Image Image
User avatar
Saviir
 
Posts: 187
Joined: Tue Nov 18, 2008 2:31 pm
My pets
My items
My wishlist
My gallery
My scenes
My dressups
Trade with me

Re: whats the code to make a pop up?

Postby Blue Icebox » Thu Jan 08, 2009 4:37 pm

I never knew you can put popups in forums!
I'm going to try...

[popin]This is Example[/popin]
[popout]This is Example[/popout]

Well, definatly! you can put javascript/html on webs! Why not? :D
ImageImageImageImageImageImageImage
Image
Image
Click: ImageImageImage
Make Clair famous and click her!
Image
User avatar
Blue Icebox
 
Posts: 221
Joined: Sun Oct 19, 2008 3:54 am
My pets
My items
My wishlist
My gallery
My scenes
My dressups
Trade with me

Re: whats the code to make a pop up?

Postby Saviir » Thu Jan 08, 2009 6:47 pm

Blue Icebox wrote:I never knew you can put popups in forums!
I'm going to try...

[popin]This is Example[/popin]
[popout]This is Example[/popout]

Well, definatly! you can put javascript/html on webs! Why not? :D
Popin and out won't work on cs. But i have a forum with that BBCode installed; http://adoptablestorehouse.weee.ws/
Image
My life is now a living Nightmare,
Wondering what went Wrong.
All the people stop and Stare,
To see the horror I've Become.




Clicks?
Image Image Image Image Image
Image







Image Image Image Image Image Image
User avatar
Saviir
 
Posts: 187
Joined: Tue Nov 18, 2008 2:31 pm
My pets
My items
My wishlist
My gallery
My scenes
My dressups
Trade with me

Re: whats the code to make a pop up?

Postby Blue Icebox » Fri Jan 09, 2009 4:50 pm

oh, ok... I know another way to make popups... also using javascript.

Code: Select all
<HEAD>
<SCRIPT language="JavaScript">
<!--
function display_quote()
{
var quote= new Array(5)
quote[0]="First Alert";
quote[1]="Second Alert";
quote[2]="Third Alert";
quote[3]="Fourth Alert";
quote[4]="In other words, fifth pop-up";
var x=0;
for (x=0; x<5; x++)
{
alert(quote[x]);
}
}
//-->
</SCRIPT>
</HEAD>
<BODY>
<A HREF="javascript:display_quote()">Click Here!</A>
</BODY>
ImageImageImageImageImageImageImage
Image
Image
Click: ImageImageImage
Make Clair famous and click her!
Image
User avatar
Blue Icebox
 
Posts: 221
Joined: Sun Oct 19, 2008 3:54 am
My pets
My items
My wishlist
My gallery
My scenes
My dressups
Trade with me

Re: whats the code to make a pop up?

Postby Blue Icebox » Fri Jan 09, 2009 5:08 pm

Pop-up isn't only "alerts"

They're new windows!

Code: Select all
<HEAD>
<SCRIPT language="JavaScript">
<!--hide

function newwindow()
{
window.open('http://www.chickensmoothie.com/','jav','width=1000,height=500,resizable=no,scrollbars=yes');
}
//-->
</SCRIPT>
</HEAD>
<BODY>
<A HREF="http://www.chickensmoothie.com/" onClick="newwindow();return false">Click Here!</A>
</BODY>
ImageImageImageImageImageImageImage
Image
Image
Click: ImageImageImage
Make Clair famous and click her!
Image
User avatar
Blue Icebox
 
Posts: 221
Joined: Sun Oct 19, 2008 3:54 am
My pets
My items
My wishlist
My gallery
My scenes
My dressups
Trade with me

Re: whats the code to make a pop up?

Postby Blue Icebox » Fri Jan 09, 2009 5:09 pm

There's ways to make alerts pop up without even clicking them!!

Code: Select all
<A HREF="noplace.html" onMouseover="alert('Mwuahahaha!!');alert('Youve been TRICKED!')"> Click Here NOWWW!!</A>
:D
ImageImageImageImageImageImageImage
Image
Image
Click: ImageImageImage
Make Clair famous and click her!
Image
User avatar
Blue Icebox
 
Posts: 221
Joined: Sun Oct 19, 2008 3:54 am
My pets
My items
My wishlist
My gallery
My scenes
My dressups
Trade with me

Who is online

Users browsing this forum: Scarlet Janefox and 2 guests