Created
March 2, 2013 18:33
-
-
Save tepie/5072432 to your computer and use it in GitHub Desktop.
export suggest values that are not numbers
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(".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