> I'm having problems getting my jquery code to execute properly. I've > read the documentation on jquery.com but i'm still receiving the error > message: "jQuery(document).ready is not a function".
I had the exact same situation here, just yesterday, combining with an older (v1.3.1) version of prototype.js. That prototype code is sort of dirty: it defines Object.prototype.extend, which, I think, completely screws up jQuery's use of its own extend method. I upgraded to prototype v1.5.1 ... Object.prototype.extend is no longer defined, and jQuery works again. But other code which depended on prototype's older, broken API needed fixing, specifically: someObject.extend({key: value, ...}) becomes Object.extend(someObject,{key: value, ...}); -- hj