Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do any browsers support the form attribute on input elements?

Tags:

html

forms

The HTML5 spec allows form-associated elements to refer to their associated <form> element via the [form] attribute. Do any browsers support this natively?

like image 662
zzzzBov Avatar asked Apr 13 '12 14:04

zzzzBov


People also ask

Which of the following is not a supported type for the input tag?

Which of the following is not a type of attribute for input tag? Explanation: Day is not defined in the pre-defined attribute list of input tag.

Which tag is used for taking input in form?

The input tag is used within < form> element to declare input controls that allow users to input data. An input field can be of various types depending upon the attribute type. The Input tag is an empty element which only contains attributes.

Is input a form element in HTML?

The HTML <input> element is the most used form element. An <input> element can be displayed in many ways, depending on the type attribute. All the different input types are covered in this chapter: HTML Input Types.


1 Answers

See:

  • http://www.impressivewebs.com/html5-form-attribute/
  • http://swatelier.info/at/forms/HTML5attrib.asp

The form attribute is supported since Firefox 4, Opera 9.5, Safari 5.1 and Chrome 10, but not on IE yet.

Here's a test page:

http://www.impressivewebs.com/demo-files/html5-form-attribute/

like image 182
Delan Azabani Avatar answered Sep 30 '22 15:09

Delan Azabani