[jQuery] Re: Running a Function After All other Javascript is Loaded

2007-08-31 Thread Flesler
What about using jQuery.ready event but put the script right before the end of the body, that should be in the end of the queue of jQuery.readyList... just a quick thought On Aug 30, 4:01 pm, cfdvlpr [EMAIL PROTECTED] wrote: Here's what I am doing currently:

[jQuery] Re: Running a Function After All other Javascript is Loaded

2007-08-31 Thread Flesler
What about using jQuery.ready event but put the script right before the end of the body, that should be in the end of the queue of jQuery.readyList... just a quick thought On Aug 30, 4:01 pm, cfdvlpr [EMAIL PROTECTED] wrote: Here's what I am doing currently:

[jQuery] Re: Running a Function After All other Javascript is Loaded

2007-08-31 Thread duma
What other code are you wating for? If you're waiting for a certain bit of code, just call them both from the same place, and you can control the order right there. Sean cfdvlpr wrote: Here's what I am doing currently: setTimeout(expandMenuUsingCookie(),550); But, I'm sure there is