Does loading unimportant data right after page load using AJAX help load the web page faster?
Certain modules on my web page are not essential so what I'm using is basically waiting for the basic web page to load and then loading the rest using:
<script>
$(document).ready(function() {
/* jQuery $.post statement to load data into specific divs */
});
</script>
Would this help loading performance or actually hinder it? If I remember correctly, Facebook does something like this, but I'm not exactly sure how (but I'm sure their system is much more elaborate and impressive)