I have multiple load functions which I would like to have compressed into one line if possible. The #id's and links are "filler" content.
Here is my code...
$('#headlines-container').load('pages/headlines.html');
$('#standings-container').load('pages/standings.html');
$('#other-container').load('pages/other.html');
Is it possible to load all of the pages with one .load() while placing the content into their respective containers?