Collapsing Forms : Form Demo « Form Control « JavaScript DHTML






Collapsing Forms

   
<html>
<head>
<title>Collapsing Forms</title>
<style type="text/css">
</style>
<script type="text/javascript">
window.onload=setup;

function setup() {
   document.getElementById('one').style.display='none';
   document.getElementById('two').style.display='none';
}

function show(newItem) {
   var item = document.getElementById(newItem);
   if (item.style.display=='none') {
       item.style.display='block';
   } else {
       item.style.display='none';
   }
}
</script>

</head>
<body>
<form>
    <div class="label" onclick="show('one')">Name(click me to expand)</div>
    <div class="elements" id="one">
        <label>First Name:</label><br /><input type="text" name="firstname" />
    </div>
    <div class="label" onclick="show('two')">Address(click me to expand)</div>
    <div class="elements" id="two">
        <label>Street Address:</label><br /><input type="text" name="street" />
    </div>
</form>
</body>
</html>

   
    
    
  








Related examples in the same category

1.Computes the french VAT and amounts including all taxes, and converts a currency into Euro
2.A one of everything HTML form
3.JavaScript Loan Calculator
4.Greeting card genertor
5.Online test
6.Searchengine MS IE
7.Set font size with form control
8.Set font color with form control
9.Change string to big, bold, fixed with form control
10.Change string to italics, small, strike with form control
11.Change string to subscript and superscript with form control
12.Create a link with value in form controls
13.Passing the form Object as a Parameter
14.Passing a Text Object (as this) to the Function