Skip to content

Instantly share code, notes, and snippets.

@seb-thomas
Created March 21, 2013 12:13
Show Gist options
  • Save seb-thomas/5212594 to your computer and use it in GitHub Desktop.
Save seb-thomas/5212594 to your computer and use it in GitHub Desktop.
var notSelected = $('.field-size').find("select option:selected");
$(notSelected).each(function() {
if ($(this).text().match(/---------/)){
$(this).addClass("hidden");
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment