I am including a jQuery file like this:
<script type="text/javascript" src="jquery-1.8.0.min.js"></script>
I am having a code like this:
if($.isNumeric(now))
{
alert("yes");
}
else
{
alert("no");
}
But when I run this script get an error:
$.isNumeric is not a function
What do I need to do?