Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion entries/submit-selector.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<longdesc>
<p>The <code>:submit</code> selector typically applies to button or input elements. Note that some browsers treat <code>&lt;button&gt;</code> element as <code>type="submit"</code> implicitly while others (such as Internet Explorer) do not. To ensure that markup works consistently across all browsers and guarantee that it is possible to consistently select buttons that will submit a form, always specify a <code>type</code> property.</p>
</longdesc>
<note id="jquery-selector-extension-alt" type="additional" data-selector=":submit" data-alt="input[type=&quot;submit&quot;], button[type=&quot;submit&quot;]"/>
<note id="jquery-selector-extension-alt" type="additional" data-selector=":submit" data-alt="input[type=&quot;submit&quot;], button[type=&quot;submit&quot;], button:not([type])"/>
<example>
<desc>Finds all submit elements that are descendants of a td element.</desc>
<code><![CDATA[
Expand Down