Skip to content
Advertisement

How to select an option of a slim select with jquery

I have some concatenated selects that work fine. By the way, I would like to convert those selects into slim selects but I found some difficulties in doing that. For example, I have a select with ID level_incarico. When I select an option of level_incarico greater than zero other selects should appear. After that, when I change an option of a concatenated select for example in select_nazione, the option change correctly. But when I select another time the option zero in level_incarico and the I select another time an option greater than zero in level_incarico appears another time the select select_nazione with the option already selected previously.

This is my javascript code:

JavaScript

This is how I create the selects:

JavaScript

In other words, the reset of the selected options $("#select_nazione").val(0); does not work correctly. It works with normal selects, but not with slim select.

Here how I fill in level_incarico:

JavaScript

Here how I fill in select_nazione:

JavaScript

Can help?

Advertisement

Answer

  • Why do you have an else for the values that are all 0
  • Why do you have display none in both branches?

Would this help you? I got the code from the manual

JavaScript
JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement