Skip to content

Instantly share code, notes, and snippets.

@rana01645
Created February 25, 2019 18:42
Show Gist options
  • Save rana01645/08182baf0880100fc13525c6d7b5c717 to your computer and use it in GitHub Desktop.
Save rana01645/08182baf0880100fc13525c6d7b5c717 to your computer and use it in GitHub Desktop.
Get select dropdown by using jquery as json
var options = $('#proxy_country option');
var values = $.map(options ,function(option) {
return '{"name":"'+option.text+'","alpha2Code":"'+option.value+'"}';
});
JSON.stringify(values.join(','));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment