I have integrated Sumoselect. select it for cascading state and city dropdown.
Initially City drop is blank. On section of States, it adds Options under City dropdown.
Question is how to remove all options of City dropdown, if someone de-selects all the selected states? There is only provision to remove options using index. So how to remove all the options at one time?
I have integrated Sumoselect. select it for cascading state and city dropdown.
Initially City drop is blank. On section of States, it adds Options under City dropdown.
Question is how to remove all options of City dropdown, if someone de-selects all the selected states? There is only provision to remove options using index. So how to remove all the options at one time?
Share Improve this question edited Jul 31, 2018 at 7:22 Nimeshka Srimal 8,9705 gold badges45 silver badges60 bronze badges asked May 19, 2016 at 13:38 AniketAniket 1291 silver badge10 bronze badges2 Answers
Reset to default 7You can delete all the HTML of the select element linked to SumoSelect and then reload the SumoSelect of that element. For example:
$('#MySelect').html('');
$('#MySelect')[0].sumo.reload();
Get all indexes in num variable.
var num = $('option').length;
for(var i=num; i>=1; i--)
{
$('.SlectBox')[0].sumo.remove(i-1);
}