Jump to content

remove arrow on drop down box


didgydont

Recommended Posts

If you have two or more options, you can use a size="x" parameter to cause all options to be displayed without the drop-down arrow -

 

<select name="cars" size="2">
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
</select>

It does not work when there is one option, unless you set size="2", but that gives an option followed by a blank line.

 

Edit: multiple just allows multiple selections to be picked.

 

Try what I posted here (modify the code on the left and hit the button above the box) - http://www.w3schools.com/html/tryit.asp?filename=tryhtml_select2

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.