19 Create a JavaScript program to create webpage with field 'User Name', 'Password' and 'Submit' button in New Window.

Program: <html> <script>        var win =  window.open("","","400,400");        with(win....
Read More

18 Develop a JavaScript program Creating and Reading of Cookies, After creating also delete the Cookies. Make use button.

Program: <html>     <head>         <title>Cookies</title>         <script>             function create(...
Read More

16 Create Employee Registration form also apply validation on required filled such as Mobile Number and submit it. After submitting the form, filled information will be displayed on that newly created child window.

Program: <html>         <head>             <script>                                 function Sub()                ...
Read More

14 Develop a JavaScript to link all the images in Banner to URLs

Program: <!DOCTYPE html> <html>     <head>         <script type='text/JavaScript'>             Banners...
Read More

13 Develop a JavaScript to create a Slide Show.( At least 3 Slide)

Program: <html> <head>     <script>         var img_array = new Array('./submit.jpg','./reset.jpg',...
Read More

12 Develop a JavaScript to create the dynamically changing Menu. Take two Menu Class and Subject. If SYCO is selected then is will show subjects of SYCO only.

Program: <!DOCTYPE html> <html>     <head>         <script type='text/JavaScript'>             syco ...
Read More

11 Develop JavaScript program with HTML to create Pull-Down menu with three option[Google, MSBTE, Yahoo].Once the user will select the one of the options then user will redirected to that site.

Program: <!DOCTYPE html> <html>     <head>         <script type='text/JavaScript'>             functi...
Read More

10 Develop a webpage using Intrinsic Java Function and also make use of its properties

Program: <!DOCTYPE html> <html>     <head>         <style>             img{                 width:50px;    ...
Read More

9 Develop a webpage for validation of form fields using regular expressions. It should also display information about Password Strength is "Weak", "Medium", "Strong"

Program: <!DOCTYPE html> <html>     <head>         <script type='text/JavaScript'>             functi...
Read More

8 Create Form that collects the first name, last name, email, user id, password and confirms password from the user. All the inputs are mandatory and email address entered should be in correct format. Also, the values entered in the password and confirm password textboxes should be the same. After validating using JavaScript, In output display proper error messages in red color just next to the textbox where there is an error.

Program: <!DOCTYPE html> <html>         <head>         <script type='text/JavaScript'>             ...
Read More

7 Create a webpage to implement Form Events. Part-II

Program: <!DOCTYPE html> <html>     <head>         <script type='text/JavaScript'>             func...
Read More

6 Create a webpage to implement Form Events. Part-I

Program: <!DOCTYPE html> <html>     <head>         <script type='text/JavaScript'>                 fu...
Read More

5 Create a web-page using Form Elements and validate using JavaScript

Program: <!DOCTYPE html> <html>     <head>         <style>                 </style>         <scr...
Read More

4 Develop JavaScript to implement functions.

Program: <!DOCTYPE html> <html>     <head>         <script>             function factorial(num)             ...
Read More

3 Develop JavaScript to implement Array functionalities.

Program: <!DOCTYPE html> <html>     <head>         <script type='text/JavaScript'>                  ...
Read More

2 Develop JavaScript to use decision making and looping statements

Program: <!DOCTYPE html> <html>     <body>         <center>             <h1> Printing Odd Number from 1...
Read More

1 Develop JavaScript program with HTML for performing arithmetic operation by taking input from user.

Program: <html>     <head>         <script type="text/JavaScript">                var a = Number(prompt(&qu...
Read More