id,summary,reporter,owner,description,type,status,priority,milestone,component,version,resolution,keywords,cc,blocking,blockedby
10690,isNumeric,shiroiyamii@…,dmethvin,"The isNumeric function use does '''not''' give the right result in every case. If the ""number"" is a date object it returns true, but a date is not a number.

the right functio should be
{{{
isNumeric: function( obj ) {
return !isNaN(parseFloat(obj)) && isFinite(obj);
}
}}}

Here's a site (not mine) that proves it:[[BR]]
http://dl.dropbox.com/u/35146/js/tests/isNumber.html

But 'cause it's not my site I copy pasted the site and add the jQuery function[[BR]]
Result:
http://img42.imageshack.us/content_round.php?page=done&l=img42/4489/20111106yami000.png",bug,closed,blocker,1.7.1,core,1.7,fixed,,,,
