First of all you need to set up your website properly. Create the div block whereever you want to have content loaded and give it a uniqueid like load-content-here. If you want to have multiple content loaders on one website you can simply call divs differently (load-here-1, load-here-2, etc...)Secondly... Add the following code to the Custom Code section in the site dashboard:

function loadContent(url, targetSelector, contentSelector) {
var target = $(targetSelector);
$.get(url, function(data) {
alert('loaded');
target.html($(contentSelector, data));
});
};



$(document).ready(function() {
$('#load-content-please').click(function(e) {
e.preventDefault()
loadContent('awesomepage', '#load-here-1', '#copyme')
});
// even more clickable stuff to load content here...
});

Button Text