Java_Script
Chapter 1 Introduction Client-side scripting language for web pages. Client-side (runs on users computer not web server) Scripting languages are easier than programming languages. Browser interprets JS statements. Its embedded (add a block of code(JS)in html page from outside) in html page. Its integrated with html. Quick development and easy maintenance. Well perform repetitive and event-invoked task(each time change data) Platform independent because of WWW. Its object-based language not object-oriented. Each web page as collection of several individual elements which are called objects( e.g. image, link etc) JS is not compiled like java. Variable data types not declared(loose typing). ------------------------------------------------------------------------------------------------------------------------ Chapter 2 Ways to put JS code in html Between the body tag of html Between the head tag of html External .js file Between the body tag of html ...