Aptana CSS hinting inside jQuery

Posted by Arpinum on Stack Overflow See other posts from Stack Overflow or by Arpinum
Published on 2010-05-08T20:04:13Z Indexed on 2010/05/08 20:08 UTC
Read the original article Hit count: 455

Filed under:
|
|

I have code hinting for Aptana setup for jQuery. However, many jQuery actions use strings, which Aptana does not provide hinting. How can I have Aptana give hinting for html and CSS when I am typing inside a string?

 $(function() {
    $("#theList tr:even").addClass("stripe1");
    $("#theList tr:odd").addClass("stripe2");
});

I have an id="thelist", but since I am inside a double quote, Aptana provides no help. Similarly, .stripe1 and .stripe2 are not hinted. I know CSS and HTML hinting are turned on. If Aptana cannot provide this feature, are there other code editors that will?

© Stack Overflow or respective owner

Related posts about aptana

Related posts about jQuery