Favorite Ajax sites
http://www.frwrd.net/minishowcase/
http://www.huddletogether.com/projects/lightbox/
JavaScript - used to implemet page logic and programatically display page using HTML and CSS
Cascading Style Sheets (CSS) - look of html
Document Object Model (DOM) - Interface used by Javascript to access elememts in a web browser
XMLHttpRequest object - XML request object used to retreive data from server
Javascript is a loosely types interprated programming language usually used to interface with a web broweser.
Loosely types mean that objects in javascript are not declared as specific types.
To declare a variable you simple say var and the variable name ie
var pi=3.1415926;
<html> <body> <script language='javascript'> //says the language is javascript <!-- document.write("Hello World!"); //prints Hello World! --> //stop JavaScript Code </script> </body> </html>
<html> <head> <title>Hello World With JavaScript</title> </head> <body> <form Name="Form1" ACTION=""> <INPUT TYPE=BUTTON VALUE="Click me" NAME="BtnHello" OnClick="Hello()"> </form> <script LANGUAGE="JavaScript"> <!-- function Hello () { alert("Hello World!") } //--> </script> </body> </html> </BODY> </HTML>
http://iam.colum.edu/WI/browser/browser.aspx?f=/AJAX Source Browser
http://iam.colum.edu/WI/AJAX Files on iam.colum.edu'