The book I have (JavaScript Second Edition by Don Gosselin) says something about the <select> tag in JavaScript that is either incorrect or I'm not using it properly. According to the book, if the size attribute of the select list is either not specified or set to 1, the list will be a drop-down type list. However, if I want the user to be able to select multiple choices from the list,
all this goes out the window. If multiple is allowed, the list appears large enough to show all choices at once, regardless of the size I've specified. If there is a way to make the list only as tall as one entry and still allow multiple selections, I'd like to know how.
Thank you
Code:
multiple=true
Thank you