Skip to content

Instantly share code, notes, and snippets.

@leomayleomay
Created January 15, 2010 02:48
Show Gist options
  • Save leomayleomay/277762 to your computer and use it in GitHub Desktop.
Save leomayleomay/277762 to your computer and use it in GitHub Desktop.
function isNumeric(val) {
return !isNaN(val.split(",").join(""));
}
function isCurrency(val, options) {
var val = val.replace(/^\$?/, '');
return isNumeric(val);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment