Skip to content

Instantly share code, notes, and snippets.

@pandauxstudio
Created November 20, 2013 03:02
Show Gist options
  • Save pandauxstudio/7556974 to your computer and use it in GitHub Desktop.
Save pandauxstudio/7556974 to your computer and use it in GitHub Desktop.
Synchronise two selected.
var countrySelects = $('[name="addresscountry"], [name="deliverycountry"]');
countrySelects.change(function(e) {
countrySelects.val(this.value);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment