JQuery menu works on sample html page, but not in asp.net project

JQuery menu works on sample html page, but not in asp.net project

OK, so jquery code works fine on a sample test html page. However, when I try to execute the exact same code in my asp.net project, it does not work.

I have included the scripts and the paths are correct so it has nothing to do with that.

  
  1. $(function(){ $('ul.jd_menu').jdMenu({ onShow: loadMenu //onHideCheck: onHideCheckMenu, //onHide: onHideMenu, //onClick: onClickMenu, //onAnimate: onAnimate }); $('ul.jd_menu_vertical').jdMenu({onShow: loadMenu, onHide: unloadMenu, offset: -1, onAnimate: onAnimate}); });

That is the section of code it gives me an error on, it says " Object doesn't support this property or method"


Also, even before I run the project, I have a warning in my error list box that says:

Error updating JScript Intellisense (C:\~~~blah blah  jquery-1.4.2.min.js


Anyone know why this is?