Ok, it's quite easy to recall ready:

Don't register your ready functions like this:

$(document).ready(...);

Register it like this:

$(document).bind("ready",...);

Now, trigger the ready event:

$(document).trigger("ready");

This works. I think, it's a bit confusing, because $(document).ready
is an event (at least in the api). So, I expect, that it can be called
like an event.

Mathias

Reply via email to