vote up 1 vote down star

I get the warning "childNodes is null or not an object' with different line numbers, depending on which version of the library I reference (I've tried about three different versions of 1.2.6). Consequently, I get jack for jQuery intellisense.

I can hack this to get it to work, but I'd rather not as I don't understand the full implications of changing the following line:

elem = jQuery.makeArray(div.childNodes);

to this:

//HACK:  VS intellisense fix
if(div && div.childNodes)
  elem = jQuery.makeArray(div.childNodes);

(The changed line only appears once in the source). What gives?

flag

3 Answers

vote up 0 vote down check

Have you tried adding a reference to the documentation-only file available here? jQuery IntelliSense in Visual Studio 2008

link|flag
I've used one of many commented versions of 1.2.6. They all result in the same error blocking any intellisense from working without the hack. – Will Oct 20 '08 at 15:51
Marking this as the answer because the new support for intellisense in jquery fixes this. – Will Nov 21 '08 at 12:53
vote up 0 vote down

It does work for me; Not sure why it is an error for me and why the fix is needed?

link|flag
vote up 2 vote down

I ran into this same issue a little while back. Are you using the jQuery UI files as well? I was and it turned out that the jquery ui javascript file was messing up the intellisense somehow. So I created an empty vsdoc.js file for the jquery ui file and then intellisense started working. My jquery ui file was called jquery-ui-personalized-1.6rc2.min.js. Creating a file called jquery-ui-personalized-1.6rc2.min-vsdoc.js fixed the issue.

I was also using jquery-jtemplates.js but that did not seem to cause a problem. I think it is just the jquery-ui file.

link|flag
+1 to this. Thanks! This jquery UI issue was really getting me down! – Chris Farmer Mar 3 at 5:00

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.