I have a page that loads an external HTML page into an iFrame. There are two problems I am facing with this:
You can make an ajax call to fetch your html page and add it to the div. For example using JQuery:
$.get('yourPage.html', function(data) { $('#yourDiv').html(data); });
Read more at: http://api.jquery.com/jQuery.get/