Would someone be able to help here?
I would like to fill a div e.g.
with content from an e
You could subscribe to the .click() event of the paragraph and then use the .load() function to send an AJAX request to the given url and inject the results into the specified selector:
$(function() {
$('.classloader').click(function() {
$('#contenthere').load('/includes/about-info.html');
return false;
});
});