Using jQuery 1.4.2 from Google hosted Code.
Is there a reason why the following javascript does not fire all 3 document.ready functions when the document is ready?
I can think of three forensic things to try, right off:
$(window).load() for one or more
of your $(document).ready()
callback defs. They have different
firing criteria --
$(window).load() waits for
everything to load up, allegedly --
but the substitution may be
revealing.Of course, console.log() and alert() will be your in-leu-of-debugger-breakpoint best friends in this case.