|
Source code : JavaScript For Beginners
Contents License
Let's first see a simple example: Usually, JavaScript code starts with the tag <script language="JavaScript"> and ends with the tag </script>. The code placed between <head> and </head>. Sometimes, people embed the code in the <body> tags: Why do we place JavaScript code inside comment fields <!-- and //-->? It's for ensuring that the Script is not displayed by old browsers that do not support JavaScript. This is optional, but considered good practice. The LANGUAGE attribute also is optional, but recommended. You may specify a particular version of JavaScript: You can use another attribute SRC to include an external file containing JavaScript code: For example, shown below is the code of the external file hello.js: The external file is simply a text file containing JavaScript code with the file name extension ".js". Note:
In order to output text in JavaScript you must use write() or writeln(). Here's an example: Note: the document object write is in lowercase as JavaScript is case sensitive. The difference between write andwriteln is: write just outputs a text, writeln outputs the text and a line break. Document objectThe document object is one of the most important objects of JavaScript. Shown below is a very simple JavaScript code: In this code, document is the object. write is the method of this object. Let's have a look at some of the other methods that the document object possesses. lastModifiedYou can always include the last update date on your page by using the following code: All you need to do here is use the lastModified property of the document. Notice that we used + to put together This page created by John N. Last update: and document.lastModified. bgColor and fgColorLets try playing around with bgColor and fgColor:
alertThere are three message boxes: alert, confirm, and prompt. Let's look at the first one: You can put whatever you want inside the quotation marks. confirmAn example for confirm box: promptPrompt box is used to allow a user to enter something according the promotion:
In all our examples above, we wrote the box methods as window.alert(). Actually, we could simply write the following instead as: Let's see an example: There are several concepts that we should know. First of all, var x= is a variable declaration. If you want to create a variable, you must declare the variable using the var statement. x will get the result, namely, true or false. Then we use a condition statement if else to give the script the ability to choose between two paths, depending on this result (condition for the following action). If the result is true (the user clicked "ok"), "Thank you" appears in the window box. If the result is false (the user clicked "cancel"), "Good choice" appears in the window box instead. So we can make more complex boxes using var, if and those basic methods. Another example: If you click "cancel", it will take you to yahoo, and clicking ok will continue with the loading of the current page "Welcome to my website!". Note:if (!x)means: if click "cancel". In JavaScript, the exclamation mark ! means: "none". FunctionFunctions are chunks of code.Let's create a simple function: Note that if only this were within your <script></script> tags, you will not see "Hello can you see me?" on your screen because functions are not executed by themselves until you call upon them. So we should do something: Last linetest() calls the function, now you will see the words "Hello can you see me?". Event handlerWhat are event handlers? They can be considered as triggers that execute JavaScript when something happens, such as click or move your mouse over a link, submit a form etc. onClickonClick handlers execute something only when users click on buttons, links, etc. Let's see an example:
The function ss() is invoked when the user clicks the button. Note: Event handlers are not added inside the <script>tags, but rather, inside the html tags. onLoadThe onload event handler is used to call the execution of JavaScript after loading:
onMouseover,onMouseoutThese handlers are used exclusively with links.
onUnloadonunload executes JavaScript while someone leaves the page. For example to thank users.
Handle multiple actionsHow do you have an event handler call multiple functions/statements? That's simple. You just need to embed the functions inside the event handler as usual, but separate each of them using a semicolon:
Let's say you have a form like this: Notice that we gave the names to the form and the element. So JavaScript can gain access to them. onBlurIf you want to get information from users and want to check each element (ie: user name, password, email) individually, and alert the user to correct the wrong input before moving on, you can use onBlur. Let's see how onblur works:
If you enter an email address without the @, you'll get an alert asking you to re-enter the data. What is:x.indexOf(@)==-1? This is a method that JavaScript can search every character within a string and look for what we want. If it finds it will return the position of the char within the string. If it doesn't, it will return -1. Therefore,x.indexOf("@")==-1 basically means: "if the string doesn't include @, then: What's focus()? This is a method of the text box, which basically forces the cursor to be at the specified text box.onsubmit Unlike onblur, onsubmit handler is inserted inside the <form> tag, and not inside any one element. Lets do an example: Note: Protect a file by using LoginLet's try an example
|| means "or", and ,!= indicates "not equal". So we can explain the script: "If the id does not equal 'Sam', or the password does not equal 'Sam123', then show an alert ('Invalid Login') and stop submitting. Else, open the page 'main.htm'". LinkIn most cases, a form can be repaced by a link: More examples: Let's see an example: To activate a Date Object, you can do this: var x=new Date(). Whenever you want to create an instance of the date object, use this important word: new followed by the object name(). Dynamically display different pagesYou can display different pages according to the different time. Here is an example:
Open a windowTo open a window, simply use the method "window.open()":
You can replace test.htm with any URL, for example, with http://www.yahoo.com. Size, toolbar, menubar, scrollbars, location, statusLet's add some of attributes to the above script to control the size of the window, and show: toolbar, scrollbars etc. The syntax to add attributes is:
For example: Another example with no attributes turned on, except the size changed: Here is the complete list of attributes you can add:
ReloadTo reload a window, use this method:
Close WindowYour can use one of the codes shown below:
LoadingThe basic syntax when loading new content into a window is:
This is the same as Let's provide an example, where a confirm box will allow users to choose between going to two places: Remote Control WindowLet's say you have opened a new window from the current window. After that, you will wonder how to make a control between the two windows. To do this, we need to first give a name to the window.Look at below:
By giving this window a name "aa", it will give you access to anything that's inside this window from other windows. Whenever we want to access anything that's inside this newly opened window, for example, to write to this window, we would do this: aa.document.write("This is a test."). Now, let's see an example of how to change the background color of another window: openerUsing "opener" property, we can access the main window from the newly opened window.
Let's create Main page: Then create Remote control page (in this example, that is test.htm): Try it now! FrameOne of the most popular uses of loading multiple frames is to load and change the content of more than one frame at once. Lets say we have a parent frame: We can add a link in the child frame "frame1" that will change the contents of not only page1, but page2 too. Shown below is the html code for it: Notice: You should use "parent.frameName.location" to access another frame. "parent" standards for the parent frame containing the frameset code. This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below. A list of licenses authors might use can be found here
|
Recent Posts
The XmlTextReader - A Beginner's Guide
Creating XML and Java Technology Based Application Source Code : XML for Beginners Source code : JavaScript For Beginners Top 5 ways to save on car insurance SQL Server : The Most Powerful DBA Tool How to Spend Your Credit Card Cash Back Money Types Of Hair Loss Treatment Available To Sufferer 5 Things You Must Have Succeeding in Affiliate Mar How To Get A Six Pack - Calling All Couch Potatoes Syndication Tools |
|
|||||||||||||||||||
You are not logged in. FREE Sign Up or Log In
©2009 Flixya Entertainment, LLC. All rights reserved.




Free Sign Up - Start Making Money on Flixya »



