I use jQuery to check if something isNumeric. How to check if it is numerical?
if (IsNumeric($('#Amount').val())) { .....
I put! to IsNumeric, but that didn't work.
Your function call is a bit off. It should be jQuery.isNumeric() or $.isNumeric() , so your code will look like this:
jQuery.isNumeric()
$.isNumeric()
if(!$.isNumeric($('#Amount').val())) { // do something }
Source: https://habr.com/ru/post/1388370/More articles:Compiling Dedexed AOSP? - androidDoes NSScreenNumber change (by chance)? - objective-cC ++ semantics for reference - c ++Center text at bottom of page - htmlHow is build-wsdl2java.xml created? - javaUIWindow makeKeyAndVisible doesn't play well with ARC - iphoneHow to create a trigger that uses the events INSERT, DELETE, UPDATE - sqlWCF static method in class - c #Play / pause mp3 files in Windows Phone MVVM application - windows-phone-7Linux sockets: local null copy, remote TCP / IP - linuxAll Articles