* feat(tools): add seed/solution restore script * chore(curriculum): remove empty sections' markers * chore(curriculum): add seed + solution to Chinese * chore: remove old formatter * fix: update getChallenges parse translated challenges separately, without reference to the source * chore(curriculum): add dashedName to English * chore(curriculum): add dashedName to Chinese * refactor: remove unused challenge property 'name' * fix: relax dashedName requirement * fix: stray tag Remove stray `pre` tag from challenge file. Signed-off-by: nhcarrigan <nhcarrigan@gmail.com> Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
112 lines
2.4 KiB
Markdown
112 lines
2.4 KiB
Markdown
---
|
|
id: bad87fee1348bd9aedd08830
|
|
title: Add a Submit Button to a Form
|
|
challengeType: 0
|
|
videoUrl: 'https://scrimba.com/p/pVMPUv/cp2Nkhz'
|
|
forumTopicId: 16627
|
|
dashedName: add-a-submit-button-to-a-form
|
|
---
|
|
|
|
# --description--
|
|
|
|
Let's add a `submit` button to your form. Clicking this button will send the data from your form to the URL you specified with your form's `action` attribute.
|
|
|
|
Here's an example submit button:
|
|
|
|
`<button type="submit">this button submits the form</button>`
|
|
|
|
# --instructions--
|
|
|
|
Add a button as the last element of your `form` element with a type of `submit`, and "Submit" as its text.
|
|
|
|
# --hints--
|
|
|
|
Your form should have a button inside it.
|
|
|
|
```js
|
|
assert($('form').children('button').length > 0);
|
|
```
|
|
|
|
Your submit button should have the attribute `type` set to `submit`.
|
|
|
|
```js
|
|
assert($('button').attr('type') === 'submit');
|
|
```
|
|
|
|
Your submit button should only have the text `Submit`.
|
|
|
|
```js
|
|
assert(
|
|
$('button')
|
|
.text()
|
|
.match(/^\s*submit\s*$/gi)
|
|
);
|
|
```
|
|
|
|
Your `button` element should have a closing tag.
|
|
|
|
```js
|
|
assert(
|
|
code.match(/<\/button>/g) &&
|
|
code.match(/<button/g) &&
|
|
code.match(/<\/button>/g).length === code.match(/<button/g).length
|
|
);
|
|
```
|
|
|
|
# --seed--
|
|
|
|
## --seed-contents--
|
|
|
|
```html
|
|
<h2>CatPhotoApp</h2>
|
|
<main>
|
|
<p>Click here to view more <a href="#">cat photos</a>.</p>
|
|
|
|
<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
|
|
|
|
<p>Things cats love:</p>
|
|
<ul>
|
|
<li>cat nip</li>
|
|
<li>laser pointers</li>
|
|
<li>lasagna</li>
|
|
</ul>
|
|
<p>Top 3 things cats hate:</p>
|
|
<ol>
|
|
<li>flea treatment</li>
|
|
<li>thunder</li>
|
|
<li>other cats</li>
|
|
</ol>
|
|
<form action="https://freecatphotoapp.com/submit-cat-photo">
|
|
<input type="text" placeholder="cat photo URL">
|
|
</form>
|
|
</main>
|
|
```
|
|
|
|
# --solutions--
|
|
|
|
```html
|
|
<h2>CatPhotoApp</h2>
|
|
<main>
|
|
<p>Click here to view more <a href="#">cat photos</a>.</p>
|
|
|
|
<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>
|
|
|
|
<p>Things cats love:</p>
|
|
<ul>
|
|
<li>cat nip</li>
|
|
<li>laser pointers</li>
|
|
<li>lasagna</li>
|
|
</ul>
|
|
<p>Top 3 things cats hate:</p>
|
|
<ol>
|
|
<li>flea treatment</li>
|
|
<li>thunder</li>
|
|
<li>other cats</li>
|
|
</ol>
|
|
<form action="https://freecatphotoapp.com/submit-cat-photo">
|
|
<input type="text" placeholder="cat photo URL">
|
|
<button type="submit">Submit</button>
|
|
</form>
|
|
</main>
|
|
```
|