About 248,000 results
Open links in new tab
  1. HTML: Select multiple as dropdown - Stack Overflow

    May 12, 2015 · Learn how to create a dropdown menu with the HTML select multiple attribute on Stack Overflow.

  2. html - How do I make a placeholder for a 'select' box? - Stack Overflow

    Apr 27, 2011 · Learn how to create a placeholder for a 'select' box using HTML and JavaScript on Stack Overflow.

  3. Set the select option as blank as default in HTML select element

    Learn how to set a blank default option in an HTML select element with detailed examples and solutions.

  4. How to style the option of an HTML select element?

    Ex. select, ::picker(select) { appearance: base-select; }. It allows you to define the in-page button that opens the options popup by using a <button> in the <select> element; almost all other tags as …

  5. Creating a select box with a search option - Stack Overflow

    javascript jquery html css html-select edited Oct 15, 2019 at 10:44 Mahdi Bashirpour 19k 17 134 154

  6. html - Change Select List Option background colour on hover - Stack ...

    Is it possible to change the default background color of a select list option on hover?

  7. html - Change select box option background color - Stack Overflow

    174 I have a select box and I'm trying to change the background color of the options when the select box has been clicked and shows all the options.

  8. html select - Get selected value in dropdown list using JavaScript ...

    Jul 6, 2009 · Learn how to retrieve the selected value from a dropdown list using JavaScript.

  9. How can I set the default value for an HTML <select> element?

    Aug 19, 2010 · Learn how to set the default value for an HTML <select> element using JavaScript or HTML techniques.

  10. Is there an onSelect event or equivalent for HTML <select>?

    <select onChange="javascript:doSomething();"> <option>A</option> <option>B</option> <option>C</option> </select> Now, doSomething() only gets triggered when the selection changes. I …