My drop down has the following values:
US USA
IN India
And other countries.
In my jQuery I want to set the selected item in dropdown to "IN India" by just passing "India". I would like to know if there is a way to achieve that.
|
My drop down has the following values:
And other countries. In my jQuery I want to set the selected item in dropdown to "IN India" by just passing "India". I would like to know if there is a way to achieve that. |
|||||
|
|
Something like? HTML
JS
Working demo http://jsfiddle.net/FKdpn/ Obviously this is tied to the document.ready function, but you can change it as per your requirements. Let me know if you need more help. |
|||||
|
|
|
There are many ways. One way is to use two arrays, one for country abbreviations and second for country names. Use the second array to find index for the selected value. Then, use the index for the first array. Then concatenate the result(IN) with the selected value "India". |
|||||
|