Ask Your Question
2

What is the method to show previously selected options from a dropdown menu?

asked 2022-03-30 11:00:00 +0000

david gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2022-09-11 12:00:00 +0000

devzero gravatar image

The usual method to show previously selected options from a dropdown menu is by setting the selected attribute to true for the corresponding option in the HTML code. For example:

<select>
  <option value="option1" selected>Option 1</option>
  <option value="option2">Option 2</option>
  <option value="option3" selected>Option 3</option>
</select>

In this example, the first and third options are selected and will be displayed as such in the dropdown menu.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-03-30 11:00:00 +0000

Seen: 12 times

Last updated: Sep 11 '22