I'm using NetBeans for PHP.

When I edit a .js file, it gives me javascript code completion.

How can I get it to also give me jQuery code completion?

alt text

link|improve this question

80% accept rate
feedback

5 Answers

up vote 12 down vote accepted

First go to Tools -> Options -> Miscellaneous and click on the Javascript tab, make sure the targeted browsers are configured properly, code completion changes by the minimal version of the targeted browsers to make sure that the functionality is supported.

You also need to add the jquery js file to your project so netbeans would be able to parse it and to properly add code completion.

link|improve this answer
In context of cakePHP v1.3 if you added your js file in the layout file like this "echo $this->Html->script('jquery');" then the code completion for the jquery does not show at all. Any suggestions for that ? – Gaurav Sharma Jun 18 '10 at 6:38
feedback

i suspect using a non-minified version of jquery would help.

link|improve this answer
feedback

These answers are misleading because jQuery no longer self-documents using "scriptdoc." Version 1.1.4 was the last to have this. Anything newer than that (>=1.2 ~mid-2007) is gutted.

amending that: VSdocs actually work: http://code.jquery.com/jquery-1.4.1-vsdoc.js or http://www.asp.net/ajaxlibrary/cdn.ashx for version after 1.4.1

link|improve this answer
feedback

For Netbeans 6.7 / 6.8 / 6.9, just follow the guide here:

Using jQuery to Enhance the Appearance and Usability of a Web Page

There's a section about half way down called "NetBeans Code Completion and API Support".

Worked no problem for me.

Note: "Choose the uncompressed version, i.e., 'Development', before downloading the jQuery library. Using the uncompressed version will allow you to examine the JavaScript code in the editor, and aid in any debugging processes."

Tip: Tools / Options / Miscellaneous / JavaScript. In the "Targeted Browsers" section, ensure IE is "6 or later". Otherwise, you'll get "Not supported" errors in the code completion pop-up and a lot of the commands will be struck out.

link|improve this answer
feedback

Make sure your Internet connection is working, because NetBeans downloads documentation when is needed. I think that NetBeans downloads it from there, but this is only my assumption. This is parsing friendly XML document with whole and recent jQuery documentation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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