There's a number of ways to approach this:
Delagation to containers
This is the simplest approach by far. Any existing or future <a> tags within the containers will attain the functionality of the specified click handler.
$(function(){
$('#header, #container, #footer').on('click', 'a', function() {
//...
});
$('#header').load("header.html");
$('#container').load("container.html");
$('#footer').load("footer.html");
});
Failure of any of the .load() actions will not affect the others.
Named function
With this approach the same named function is specified as the 'complete' callback for all three .load() calls.
$(function() {
function bindHandler() {
$(this).find("a").on('click', function() {
//...
});
}
$('#header').load("header.html", bindHandler);
$('#container').load("container.html", bindHandler);
$('#footer').load("footer.html", bindHandler);
});
Again, failure of any of the .load() actions will not affect the others.
.when(promises).done()
In this approach, .load() is replaced with $.ajax, which returns a very handy 'jqXHR' (promise) object. .load() can't be used in this way as it returns a standard jQuery object; it's promise object is inaccessible.
function load(url, selector) {
//make ajax request and return jqXHR (promise) object
return $.ajax(url, {
success: function(data){
$(selector).html(data);
}
});
}
$.when(
load("header.html", '#header'),
load("container.html", '#container'),
load("footer.html)", '#footer')
).done(function() {
// All three ajax requests have successfully completed
$("#header, #container, #footer").find("a").on('click', function() {
//...
});
});
This last approach should be used only if the click handler is to be put in place when all three load actions are successful. Failure of any one of the .load() actions will completely inhibit attachment of the click handler.