Define the controller for the URL
If you want to use POST method:
content.load('URL(.)or(#)sectionToLoad', {}, function(event) {
...
});
or, if you want to use GET method:
content.load('URL(.)or(#)sectionToLoad', function(event) {
...
});
Call it with a function like .click or .submit
and that´s it