17 Create a JavaScript code to create Frame. Frame1 will take input as number and result will be Fibonacci series of that number, result will be display on Frame 2 i.e. elements of frame1 is accessed by frame2.

Program: Frameset.html : <html> <frameset cols="40%,60%">   <frame src="./accept.html" name=&q...
Read More

26 Create JavaScript. Program for creating overloaded method called 'Add ' to calculate the sum of two integers, two float numbers, one integer and one float.

Program: <html>     <script>         function add(a , b )         {             var sum = a+b;             alert("...
Read More

15 Create a JavaScript to change the image and its description on window using Rollover

Program: <html> <head>     <script>         function display() {             document.getElementById("image...
Read More

25 Create a JavaScript make use of 'Radio Button' and 'Checkbox Button' to select 'Favorite Fruits' 'Favorite Color' , Also make use of button to confirm the input and display which 'Radio' and 'Checkbox button' is selected.

Program: <html>     <body>         <form id="form">             <input type="radio" id="...
Read More

24 Create a JavaScript using Mouse Event such that when mouse pointer is on button background image will be changed.

Program: <html> <head>   <script>     function clickEvent() {       document.getElementById("img").src ...
Read More

23 Create a JavaScript to show Key Events and specific which event has been occurred.

Program: <html> <body>     <form name="f1">         <input type="button" name="key&quo...
Read More

22 Create a JavaScript program for moving car using 2 button 'START' and 'STOP'

Program: <html>     <head>         <script>             var obj = null;             var a ;             function i...
Read More

21 Create a JavaScript program for Rotating Images using setTimeout() method. Rotate images after 1 sec.

Program: <html>     <head>         <script>             var i , imgs , pic ;             function init()          ...
Read More

20 Create a JavaScript program to create webpage with 'Bio-data' and after clicking on 'View Bio-data', it will display a New Window with 'Bio-Data'.

Program: <html>     <body>         <center>         View Bio Data : <br><br><input type="button&...
Read More