jQuery.isNumeric() Yöntemi;
jQuery.isNumeric() yöntemi argümanın bir sayı olup olmadığını belirlemek için kullanılır.
Örnek
$.isNumeric( "-2" );
$.isNumeric( 12);
$.isNumeric( 0xFF );
$.isNumeric( "0xFF" );
$.isNumeric( "8e5" );
$.isNumeric( 3.1415 );
$.isNumeric( +10 );
$.isNumeric( 0144 );
$.isNumeric( "" );
$.isNumeric({});
$.isNumeric( NaN );
$.isNumeric( null );
$.isNumeric( true );
$.isNumeric( Infinity );
$.isNumeric( undefined );
Kullanım şekilleri;
JQuery.isNumeric(value);