Multible jquery .load() methods not running concurrently in MVC 2
- by Boob
In one of my aspx pages i have something like this in the head:
<script type="text/javascript">
$(function() {
// Jquery stuff
loadStuff();
});
function loadStuff() {
$('#result1').load({ source: url });
$('#result2').load({ source: url });
$('#result3').load({ source: url });
}; …