This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 235232 - jQuery cc doesn't work for variables
Summary: jQuery cc doesn't work for variables
Status: NEW
Alias: None
Product: javascript
Classification: Unclassified
Component: Editor (show other bugs)
Version: 7.4
Hardware: PC Linux
: P3 normal with 3 votes (vote)
Assignee: Petr Pisl
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2013-08-29 11:54 UTC by Petr Pisl
Modified: 2013-11-15 08:33 UTC (History)
2 users (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Petr Pisl 2013-08-29 11:54:58 UTC
This is a part of an email communication:


I followed the tutorial for simple jQuery application with netbeans. Netbeans has
excellent features, working with it will be easy for JavaScript development.

However there are certain doubts that I have , please clarify.

When I use the jQuery library in html5 project, I'm able to access jQuery methods in
content assist by writing some code like 
jQuery("#mydiv span").each or jQuery("#mydiv span").filter

However content assist does not work when I try to access the functions by assigning the
jQuery object to some variable.
For example :

var spans = jQuery("#mydiv span");
spans./*no jQuery functions accessible*/

content assist does not work with the "spans" variable, even though it is instance of
jQuery.