Autocomplete for jQuery works in my NetBeans on my Mac but not on my PC. Any ideas? Using NetBeans 6.7.1.
why are poeple downvoting this. the OP doesnt provide any useful information in his question either
mkoryak
2009-10-20 13:11:11
Everything looks correct. Problem solved after NetBEans 6.8 was released.
michaeljdennis
2010-01-21 23:15:07
A:
what kind of project are you working on? Seems like netbeans IDE supports jquery autocomplete for php projects but not for python projects. might that be the case here? are you trying to open same projects?
Numenor
2009-10-20 13:09:43
A:
Once and for all for everyone who get's here from google or something... It took me some time to figure this out. These is how you make it work:
In your code you have something like
<script type="text/javascript" src="javascripts/jquery-1.4.2.min.js"></script>
Go to jQuery Download page
- In the same directory where jquery-1.4.2.min.js is (in this case "javascripts")
you drop
the file http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js under Google Ajax API CDN
or
the file http://ajax.microsoft.com/ajax/jquery/jquery-1.4.2.min.js under Microsoft CDN.
Thats all! Enjoy!
Alqin
2010-08-16 00:46:30