[jQuery] Re: IDE supporting jQuery

2009-09-11 Thread KirbySaysHi
NetBeans ftw! For JavaScript and PHP, it's probably the best around. Last time I used aptana, it seemed very slow, that was a year ago or so. On Sep 11, 9:20 am, Alex Weber wrote: > Just confirming: Aptana and Netbeans are excellent choices! :) > > On Sep 11, 8:15 am, szymon jankowski > wrote:

[jQuery] Re: chaining animations and pausing for each step

2009-09-11 Thread KirbySaysHi
Check out the animate method. You can use it as a delay by telling it to animate nothing (or a propery you know the value of) for a duration. So something like set the opacity to animate to 1, over a period of 300ms. Since the opacity is presably already 1, it will just hang there for 300 ms! Sinc