LanguagesJavaScriptDo I Really Need That LANGUAGE="javascript"?

Do I Really Need That LANGUAGE=”javascript”?

Developer.com content and product recommendations are editorially independent. We may make money when you click on links to our partners. Learn More.


Hello, Script Tip Folk…

Let’s start looking at a new script. This is a little more involved than the last one, so we should be able to really tear it apart and get a lot out of it.

Basically, here’s what this script does:

  • Posts a dialogue box when a person enters the page.
  • The box has text on it that can be altered.
  • The box gives the user the opportunity to click OK to enter the page or Cancel not to enter the page.
  • If the user clicks OK, then the page loads as usual.
  • If the user clicks Cancel, then the script reloads the page the user was coming from.

The script is Copyright © JemWeb 1997, but HTML Goodies has permission to use it to help you along with your JavaScripting.

That said, here’s what it looks like:


 

<SCRIPT LANGUAGE="javascript">
function JemWebCONFIRM()
{if (!confirm ("YOUR MESSAGE GOES HERE"))
history.go(-1);return " "}

</SCRIPT> 
 


How about that? All that functionality in such a small script!

We’ll start tearing this pup apart by looking at the very first line in the script:


 

<SCRIPT LANGUAGE="javascript">
 


I am asked all the time if that LANGUAGE=”javascript” item is actually needed (many people have found that simply writing SCRIPT will get the job done). The quick answer is yes, that LANGUAGE attribute is needed. Not all the time, but you should simply get into the habit of using it. The reason has to do with the fact that there are so many different types of scripts out there including JavaScript, Live Script, JScript, and VBScript. Each is quite similar and yet quite different.

By using the LANGUAGE attribute, you specifically lock in which script type you’re using. It can be quite beneficial to the browser if the script you’re using has commands found in different scripting languages.

So use it!

Next Time: What’s A Function?

Get the Free Newsletter!

Subscribe to Developer Insider for top news, trends & analysis

Latest Posts

Related Stories