I'm new to Aptana and I've just started a project which nature is Web.
I have two issues with code completion, did some research online but didn't find the solution.
1) I have this two lines of code.
var script = document.createElement("script");
script.type = "text/javascript";
I expect to have code completion in the second line when I type "script. ", and I have some suggestions. But I don't have suggested Script's attributes, in particular in this example the property "type" is not suggested.
2) I cant' "Go to declaration" on "document" object or "createElement" function.
I don't know if these are unsupported features of autocompletion or I'm missing something, maybe some configurations.
Just to compare, I've both features working in RubyMine.
Thanks in advance ! Rodo