select one option value jquery

Solutions on MaxInterview for select one option value jquery by the best coders in the world

showing results for - "select one option value jquery"
Melvyn
18 Apr 2017
1$('.id_100 option')
2     .removeAttr('selected')
3     .filter('[value=val1]')
4         .attr('selected', true)