jQuery issue - #<an Object> has no method jQuery issue - #<an Object> has no method javascript javascript

jQuery issue - #<an Object> has no method


This problem can also arise if you include jQuery more than once.


Ignore me. I'm sorry everyone. I'd mistyped the url of the script. Thanks to Simon Ainley for the prod in the right direction.

Sorry again. Thanks.


I had this problem, or one that looked superficially similar, yesterday. It turned out that I wasn't being careful when mixing jQuery and prototype. I found several solutions at http://docs.jquery.com/Using_jQuery_with_Other_Libraries. I opted for

var $j = jQuery.noConflict();

but there are other reasonable options described there.