Where can I get the VSDoc for jQuery 1.4.2?
Using jQuery 1.4.4, and the vsdoc from http://appendto.com/community/vsdoc (as well as the fix for line ~1750), I can update my Intellisense without error; however, whenever I type:
$.
Not only do I not get any relevant Intelliprompts, but I see:
Javascript Intellisense Message: JSIntellisense:Internal/(3:4) : Object required
This references the first function in my .js file:
; (function ($) { $.fn.MobileFunction = function (options) {
//My Function
};
})(jQuery);
I do have one warning: "Expected Expression" on the first closing paren in })(jQuery); but I cannot find a syntax error in the code. Even with the entire function commented out, Intellisense produces no output.