I am using this code to load some contents of a file into a div:
$('#mydiv').load('template1.html');
Is it possible to load multiple into multiple div's?
For example:
$('#mydiv', '#mydiv2').load('template1.html', 'template2.html');
If so how?
$.load()function, coz it supports only one URL.