Input Submit type Property

❮ Input Submit Object

Example

Find out which type of form element the Submit button is:

var x = document.getElementById("mySubmit").type;
Try it Yourself »

Description

The type property returns which type of form element a submit button is.

For a submit button object, this property will always return "submit".


Browser Support

Property
type Yes Yes Yes Yes Yes

Syntax

submitObject.type

Return Value

Type Description
String The type of form element the submit button is

❮ Input Submit Object
Copyright 1999-2023 by Refsnes Data. All Rights Reserved.