Ask Your Question
2

How can I make sure the option remains in the select menu using Choices.js?

asked 2022-01-05 11:00:00 +0000

devzero gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2022-08-25 06:00:00 +0000

plato gravatar image

You can use the addChoice method provided by Choices.js to programmatically add options to the select menu. Here's an example:

const choices = new Choices('#my-select');
choices.addChoice({
  value: 'option-value',
  label: 'Option Label',
  selected: true
});

In this example, the addChoice method adds a new option to the select menu with the value "option-value", label "Option Label", and the selected property set to true. This will ensure that the option remains selected even if the user clicks away from the menu and comes back later.

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-01-05 11:00:00 +0000

Seen: 10 times

Last updated: Aug 25 '22