Hidden : Hidden Object « Form « JavaScript Tutorial






The Hidden object is created with the HTML tag. Specifying the TYPE parameter of the tag as hidden creates the Hidden object. It is a text object that is suppressed from form display in an HTML form. The Hidden object is primarily used for passing name/value pairs from a form.

PropertyDescription
formSpecifies the form containing the Hidden object.
nameRefers to the name of Hidden object.
typeRefers to HTML TYPE attribute of Hidden object.
valueRefers to HTML VALUE attribute of Hidden object.


<html>
    <head>
    <title> Creating hidden objects</title>
    </head>
    <body>
    <form name="form1">
    <input type="hidden" name="hide1" value="Test">
    <P>
    <input type="button" value="Get Hidden Attributes"
         onClick='alert(form1.hide1.name + " " + form1.hide1.type + " " + form1.hide1.value)'>
    </form>
    </body>
    </html>








10.20.Hidden Object
10.20.1.Hidden
10.20.2.Hidden.form
10.20.3.Hidden.name
10.20.4.Hidden.type
10.20.5.Hidden.value