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 trialMatthew Lee
3,910 PointsPlaceholder for Drop Down Selector
Hi! How do I put a placeholder for the drop down selector? For example, a placeholder that says "Select Job Role" instead of selecting the first option by default "Full Stack Javascript Developer".
1 Answer
tobiastrinkler
Full Stack JavaScript Techdegree Student 16,538 PointsHi Matthew try this:
<form>
<select >
<option value="" disabled selected hidden>Select Job Role</option>
<option value="">Web Developer</option>
<option value="">Java Developer</option>
<option value="">Full Stack Developer</option>
<option value="">Ruby Developer</option>
</select>
</form>