-1

I have a textfield

 <input type="text"...

It shall display items from 1 to 31. If I click in the textfield it should open the values (1 - 31) like in a select field. However I don't want to directly use

 <select 

because I don't like the "down arrow".

How can I achieve this?

matthias
  • 1,938
  • 23
  • 51

1 Answers1

0

You can use the multiple attribute on the <select> tag:

<select multiple>
    <option value="1">First</option>
    <option value="etc">Others</option>
</select>

That will look like this.

Joeytje50
  • 18,636
  • 15
  • 63
  • 95