Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialbrandonlind2
7,823 PointsWhat is the use of the button attribute value of button?
example
<button type="button"></button>
the MDN says its used for adding scripts, but you can add scripts to an element with .onclick(), so what I'm not understanding the reason or use of the button value
1 Answer
Dennis Le
12,872 PointsIt seems like you already know this. It can be confusing. To my understanding, the attribute is used to reference form data after the form has been submitted....also to reference it to JavaScript. <button type = "submit"> Click Me</button> ...the type attribute specifies the type of button. Not sure if this is what you are looking for.