Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Bojie Jiang
Courses Plus Student 8,221 Pointstype=“submit” is missing in http://httpbin.org/forms/post
Looked at source code of http://httpbin.org/forms/post. On the submit order button, it just be <button>Submit order</button>. It not declare the type of submit like <button type=“submit” >Submit order</button>, but it works. So is that ok for a form just which contains one button and not define submit type?
1 Answer

Brian DuPont
30,448 PointsSource: https://www.w3.org/wiki/HTML/Elements/button#HTML_Attributes
A button element has 3 values for the "type" attribute (submit, reset, button). The button element will default to type="submit" if not declared.