I'm absolutely sure this will be a trivial, newbie question, but hey - what's stackoverflow for?
I want to make use of the jQueryUI Spinner; and I'd like to grab the required files from Google. I have the following in my <head>
:
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.1/jquery.min.js" type="text/javascript"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js" type="text/javascript"></script>
...but when I try $('#sac_inf_241').spinner({max: 3, min:0})
through FireBug's Console, I get TypeError: $("#sac_inf_241").spinner is not a function
. I can only assume I've not grabbed the right files from Google, but I don't know what I should be getting.
Can anyone help?