Go Back   Webmaster Forum > Development > Programming > JavaScript
REMOVE the ads below !
Reply
 
LinkBack Thread Tools
  # 1 (permalink)
Old
Senior Geek
Posts: 591
Join Date: Jan 2008
iTrader: (0)
Location: Craiova
Creating Alerts - 02-08-2008

So you've seen those annoying websites that have alert boxes appearing every time you click or open something and wondered how to do it? Well here's your answer. Firstly, your basic command for an alert box in javascript is
Code:
alert('This is an alert box!')
The above code will produce an alert box with the text "This is an alert box!" inside it.

So, how do you use it?
Well first of all, let's try making an alert appear when you open a web page. In the <head> of your (X)HTML page, add the following:

HTML Code:
<script language="JavaScript">    
    alert('Welcome to my site!');   
</script>
Now, when you open your webpage, the alert box will come up and the user must press the OK button before the rest of the site loads.
However, you are not just limited to one alert box! You can have as many as you like! How? Just add more alerts! For example:

HTML Code:
<script language="JavaScript">    
    alert('Hello!');   
    alert('Welcome to my brand new website!');   
    alert('Remember to check out the forums!');   
    alert('And please sign the guestbook!');   
    alert('I hope you enjoy your visit!');   
</script>
The user will have to click OK to all of these alerts before the page loads.
Another use for the alert box is when the user hovers their mouse over something on your page. This is how to do it:

HTML Code:
<a onMouseOver="alert('The forums are still under construction!')">Forums</a>
The user will not be able to click this link as everytime they move their mouse over it, the alert box will appear and they cannot do anything else on your page until they have clicked the OK button to close the alert box.
Reply With Quote
  # 2 (permalink)
Old
Regular Geek
Posts: 308
Join Date: Nov 2007
iTrader: (0)
02-09-2008

Pretty cool, thanks.
Reply With Quote
  # 3 (permalink)
Old
Senior Geek
Posts: 591
Join Date: Jan 2008
iTrader: (0)
Location: Craiova
02-09-2008

for nothing
Reply With Quote
Reply


Thread Tools



PSD to HTML

vBulletin®, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd. | SEO by vBSEO | Skin developed by vBStyles.com