Re: [jQuery] Re: Can I use $(document).ready(function(){ in the same page more than a once time in the same page

2009-12-05 Thread webmaster-uajms
thanks 2009/12/4 Michael Geary m...@mg.to It really makes little difference at all. jQuery makes an array of all your ready callbacks, and when the document is ready it loops through that array and calls each function. So other than that tiny bit of overhead, the net effect is exactly the

[jQuery] Re: Can I use $(document).ready(function(){ in the same page more than a once time in the same page

2009-12-04 Thread coolf
ok, thanks for the response. But what is the best, is it good to have more than a documen.ready ? it doesn't bring problems? On 4 dic, 11:33, Andreas Möller localhe...@l8m.de wrote: Hello i'm new here, Is it posible? Yes, it is. Best regards, Andreas

[jQuery] Re: Can I use $(document).ready(function(){ in the same page more than a once time in the same page

2009-12-04 Thread MorningZ
there's no problems with it... as for best, that completely applies to the situation, there is no one, all-encompassing answer for that On Dec 4, 10:35 am, coolf jm.neut...@gmail.com wrote: ok, thanks for the response. But what is the best, is it good to have more than a documen.ready ? it

Re: [jQuery] Re: Can I use $(document).ready(function(){ in the same page more than a once time in the same page

2009-12-04 Thread Michel Belleville
Basically, my advice would be : 1. first, load jQuery 2. then load jQuery extensions (UI, plugins) 3. then load your own domain-specific extensions (method declarations, etc.) 4. then load your page hooks (in a $(function() { ... }) block so it starts when the page is complete),

[jQuery] Re: Can I use $(document).ready(function(){ in the same page more than a once time in the same page

2009-12-04 Thread coolf
thanks to all On 4 dic, 12:08, Michel Belleville michel.bellevi...@gmail.com wrote: Basically, my advice would be :    1. first, load jQuery    2. then load jQuery extensions (UI, plugins)    3. then load your own domain-specific extensions (method declarations,    etc.)    4. then load

Re: [jQuery] Re: Can I use $(document).ready(function(){ in the same page more than a once time in the same page

2009-12-04 Thread Michael Geary
It really makes little difference at all. jQuery makes an array of all your ready callbacks, and when the document is ready it loops through that array and calls each function. So other than that tiny bit of overhead, the net effect is exactly the same whether you put all the code in one ready