Skip to content

Instantly share code, notes, and snippets.

@tepie
Created March 2, 2013 18:33
Show Gist options
  • Save tepie/5072432 to your computer and use it in GitHub Desktop.
Save tepie/5072432 to your computer and use it in GitHub Desktop.
export suggest values that are not numbers
$(".SuggestionTextBox").each(function(){ if (isNaN ($(this)[0].value) ) console.log($(this)[0].value); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment