HTML DOM Input URL Object | HTML Input Type URL Tutorial by WDH

HTML DOM Input URL Object


 

Example

Get the name of a URL field:

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

The result of x will be:

website

 


Definition and Usage

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

The name attribute is used to identify form data after it has been submitted to the server, or to reference form data using JavaScript on the client side.

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


Browser Support

Property          
name Yes 10.0 Yes Not supported Yes

Syntax

Return the name property:

urlObject.name

Set the name property:

urlObject.name = name

Property Values

Value Description
name Specifies the name of the URL field

Technical Details

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

More Examples

Example

Change the name of a URL field:

document.getElementById("myURL").name = "newNameValue";

Try it Yourself »


Related Pages

HTML reference: