[jQuery] Re: with out ready event

2008-12-02 Thread Hector Virgen
I usually create my functions/classes outside of $(document).ready(), and then call them from within $(document).ready(). -Hector On Tue, Dec 2, 2008 at 10:02 AM, ricardobeat <[EMAIL PROTECTED]> wrote: > > Yes you can, but you need to wait for the DOM to be ready to > manipulate any elements, so

[jQuery] Re: with out ready event

2008-12-02 Thread ricardobeat
Yes you can, but you need to wait for the DOM to be ready to manipulate any elements, so what you can do is a bit limited. You can also, for example, put your scripts at the bottom of the or after the elements you're manipulating, then you don't need to use ready() or onload. But it's not very c