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 trialJordan Kilian
4,262 PointsSelect element makes button disappear
Hey guys so I built a form on a web project I'm working on but it seems when I add the job selector element my submit button below it disappears. Any ideas as to why that's happening?
Here are links to images of code/webpage: https://imgur.com/I6Qmdlq https://imgur.com/cavnOmb
3 Answers
Connor Walker
17,985 PointsThere is no closing tag for the select tag so the button belongs to the select tag. Try putting </select> just above the submit button and see if that fixes it.
Alex Kirke
13,419 PointsHello Jordan!
I cannot tell exactly what is wrong but it looks like you are missing </select> at the end of your selection section. This might be causing interference with the button.
Hope this helps!
Best, Alex
Jordan Kilian
4,262 PointsThat was it guy's, thanks a lot!...I feel pretty stupid not catching that lol ?