[jQuery] $.load doesn't trigger $(document).ready, but $.ajax({type:"GET", ...} does???
It seems like when I load a page into a div like this, the $
(document).ready code in the loaded page doesn't fire:
$("#mydiv").load("/a");
But when I do this, the $(document).ready on /a does fire.
Is this correct?