0

Possible Duplicate:
Eclipse JavaScript Editor: content assist for js files

I used eclipse to write code in javascript.

Is it possible that the eclipse will complete word or statement in jQuery or in javascript?

For example

$("test").

then I want to get the option of all the functions or

var obj = { key : 1 , val : 2 }

when I press obj. I want to get key or val

Is it possible to do it in eclipse ?

Community
  • 1
  • 1
user1365697
  • 5,819
  • 15
  • 60
  • 96

1 Answers1

0

Check out the Aptana Studio plugin for eclipse. Its code assist capabilities work out of the box for vanilla JavaScript, and can be extended quite easily to supports common JavaScript libraries as well (e.g. jQuery).

Eliran Malka
  • 15,821
  • 6
  • 77
  • 100