JavaScript is used in most of the web pages or web forms to validate the input given by the user, detect names or version of browsers, check the compatibility of browser with JavaScript, create cookies, and many more things.

JavaScript is becoming the most popular scripting language due to its easy scripting, faster response and compatibility with most of the Internet browsers available these days.

Following are the major browsers commonly used by most of the Internet surfers:

  • Google Chrome
  • Internet Explorer
  • Safari
  • Mozilla Firefox
  • Opera
  • Netscape

All these browsers support JavaScript but in a little bit different manner that can be managed by detecting browser name and their versions.

Uses of JavaScript

JavaScript works at client end, which means when JavaScript works on the system of internet user or in simple language the computer of person browsing the web sites online.

A simple difference that will clear all that confusion about client end scripting with JavaScript and server end coding with PHP, JAVA, VB/C# in ASP.Net is to display the server time on which the website is running. You can use PHP, JAVA, C#/VB code to show the server time whereas to display the time of the computer system where the site is being explored by the user, JavaScript is used.

JavaScript is used for modifying the HTML tags, generating dynamic HTML tags that is also known as DHTML, and changing the CSS styles of web page contents.

document.write('Hello World'); 

JavaScript can also handle the events of basic HTML form controls such as input text, select drop down, list box, textarea, check box, radio controls etc.

No comments yet.

Leave a Comment

All fields are required. Your email address will not be published.

Recent JavaScript Tutorials

JavaScript if-else Ternary Operator

The JavaScript conditional ternary operator is considered as shorthand for if-else statement that is frequently used to return the result in single code statement. It takes three operands to return ...

JavaScript do…while Loop

do...while loop in JavaScript works like while loop in JavaScript the only difference is that do block executes at least once before while loop’s test condition. That’s why do block ...

JavaScript while Loop

while loop in JavaScript works same like for loop in JavaScript but in a little bit different manner. while loop runs until the condition is true and exits when the ...

JavaScript for Loop

for loop in JavaScript is most often used to execute a block of code with different value each time. So, to reduce the code length instead of adding number of ...

JavaScript switch-case Statement

To execute a single block of code satisfying a condition in case statement of JavaScript switch-case is used. break keyword is used in every case statement to exit the switch ...

Recent Comments