Skip to content

Instantly share code, notes, and snippets.

@JeroenVinke
Created February 27, 2016 19:54
Show Gist options
  • Select an option

  • Save JeroenVinke/c51db7a1dc0b49c6f30b to your computer and use it in GitHub Desktop.

Select an option

Save JeroenVinke/c51db7a1dc0b49c6f30b to your computer and use it in GitHub Desktop.
$.each($("#select1 > option"), function (index, item) {
var found = false;
$.each($("#select2 > option"), function (index1, item1) {
if(item1.text == item.text) {
found = true;
}
});
if(found) {
$(item).css("background-color", "red");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment