short-jsdoc
Version:
short and simple jsdoc Object Oriented syntax format and implementation
23 lines (20 loc) • 1.15 kB
JavaScript
/*
@module html @class HTMLFormElement @extends HTMLElement
@property accept file_type Not supported in HTML5.
@property Specifies a comma-separated list of file types that the server accepts (that can be submitted through the file upload)
@property accept-charset character_set Specifies the character encodings that are to be used for the form submission
@property action URL Specifies where to send the form-data when a form is submitted
@property autocomplete on
@property off Specifies whether a form should have autocomplete on or off
@property enctype application/x-www-form-urlencoded
@property multipart/form-data
@property text/plain Specifies how the form-data should be encoded when submitting it to the server (only for method="post")
@property method get
@property post Specifies the HTTP method to use when sending form-data
@property name text Specifies the name of a form
@property novalidate novalidate Specifies that the form should not be validated when submitted
@property target _blank
@property _self
@property _parent
@property _top Specifies where to display the response that is received after submitting the form
*/