Use jquery to load a file into a div via an onclick event. Needed to do this to load a pageview on a single page, multi-step app where multiple pageviews needed to be recorded
jQuery(function ($) {
$(document).ready(function(){
$(".page1").click(function(){
$('#pageloader').load('path/to/file.html');
});
});
}