zoxon
9/1/2015 - 2:16 AM

Add the isNumeric function for older versions of jQuery that do not have it

Add the isNumeric function for older versions of jQuery that do not have it

// Add the isNumeric function for older versions of jQuery that do not have it
if(typeof(jQuery.isNumeric) !== 'function'){
	jQuery.isNumeric = function(obj){ return !isNaN(parseFloat(obj)) && isFinite(obj); };
}