Skip to content

Commit

Permalink
Fix typo in text input example (mdn#2778)
Browse files Browse the repository at this point in the history
  • Loading branch information
io614 authored Mar 1, 2021
1 parent c613ca5 commit f442776
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion files/en-us/web/html/element/input/text/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,7 @@ <h3 id="Basic_example">Basic example</h3>

<p>{{EmbedLiveSample("Basic_example", 600, 50)}}</p>

<p>When submitted, the data name/value pair sent to the server will be <code>uname=Chris</code> (if "Chris" was entered as the input value before submission). You must remember to include {{htmlattrxref("name", "input")}} attribute on the {{HTMLElement("input")}} element, otherwise the text field's value won't be included with the submitted data.</p>
<p>When submitted, the data name/value pair sent to the server will be <code>name=Chris</code> (if "Chris" was entered as the input value before submission). You must remember to include {{htmlattrxref("name", "input")}} attribute on the {{HTMLElement("input")}} element, otherwise the text field's value won't be included with the submitted data.</p>

<h3 id="Setting_placeholders">Setting placeholders</h3>

Expand Down

0 comments on commit f442776

Please sign in to comment.