What is Javascript?
Javascript is a programming language that is used to make web pages interactive. It runs on your visitor’s computer and so does not require constant downloads from your web site. A Brief History of...
View ArticleWhat is JavaScript and how is it different from Java Technology?
The JavaScript programming language, developed by Netscape, Inc., is not part of the Java platform. JavaScript, does not create applets or standalone applications. In its most common form today,...
View ArticleBenefits of JavaScript
Javascript has Many benifits. JavaScript’s main benefit is that it can be understood by the common human. It is much easier and more robust than Java. It allows for fast creation of web page events....
View ArticleSome Common FAQ about Javascipt
Are Javascript and Java the same? No, they are two completely different computer languages. Only their names are similar. Actually Javascript is not Java and Java is not Javascript. You can say Java...
View ArticleJavascript Objects, Methods, Events
Objects and Properties Your web page document is an object. Any table, form, button, image, or link on your page is also an object. Each object has certain properties (information about the object)....
View ArticleJavascript Message Box Example
Chapter 1, The Message Box This is a very simple script. It opens up an alert message box which displays whatever is typed in the form box below. Type something in the box. Then click “Show Me” HOW...
View ArticleWeb Page Background Color Change with Javascript
Complete Code <HTML> <HEAD> <SCRIPT LANGUAGE=”JavaScript”> <!– Beginning of JavaScript – function changecolor(code) { document.bgColor=code } // – End of JavaScript – –>...
View ArticleHow to write Javascript into HTML code
To insert a JavaScript into an HTML page, use the <script> tag. Inside the <script> tag use the type attribute to define the scripting language. The <script> and </script> tells...
View ArticleDifferent between JavaScript into and into
JavaScript between <head></head> Tag : JavaScript between<head></head> tag generally writing as a function & function call from HTML content of the webpage, like this : Here...
View ArticleVarious JavaScript Statements
JavaScript is Case Sensitive Unlike HTML, JavaScript is case sensitive – therefore watch your capitalization closely when you write JavaScript statements, create or call variables, objects and...
View Article