JavaScript can be used to create cookies in web browser of the website visitor to track the number of visits by that visitor or new visitor.

JavaScript can be used to detect the name and version of browsers that the visitor is using to browse the web sites, so that, you can manage the JavaScript code handling according to the compatibility standards of that browser.

<script language="javascript" type="text/javascript">
    document.write(navigator.userAgent);
</script>

You can validate the data input submitted by any web site user whether he has filled all the input fields correctly. E.g.: email id is valid or not, zip code is valid or not, telephone number is valid or not, user has selected at least any value in HTML select control.

You can create HTML elements dynamically by using JavaScript functions and you can modify its content and CSS styles also.

JavaScript can generate innerHTML for HTML elements dynamically.

JavaScript can also be used to handle the client end events of basic HTML controls like onclick event of button, input text, select dropdowns or list boxes.

JavaScript can used to create small widgets that can be shared in number of web pages.

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