FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

Keygen name Property

Keygen Object Reference Keygen Object

Example

Return the value of the name attribute of a keygen field:

var x = document.getElementById("myKeygen").name;

The result of x will be:

security
Try it Yourself »

Definition and Usage

The name property sets or returns the value of the name attribute of a keygen field.

The name attribute specifies the name of the keygen field, and is used to reference form-data after it has been submitted, or to reference the element in a JavaScript.

Note: Only form elements with a name attribute will have their values passed when submitting a form.


Browser Support

Property
name Yes Not supported Yes Yes Yes

Syntax

Return the name property:

keygenObject.name

Set the name property:

keygenObject.name=name

Property Values

Value Description
name Specifies the name of the keygen field

Technical Details

Return Value: A String, representing the name of the keygen field

More Examples

Example

Change the value of the name attribute of a keygen field:

document.getElementById("myKeygen").name = "newName";
Try it Yourself »

Related Pages

HTML reference: HTML <keygen> name attribute


Keygen Object Reference Keygen Object