jQuery Include HTML
// include jquery.js library
// code inside this will happen after page is loaded
$(document).ready(function(){
// find element with ID of "target" and put file contents into it
$('#target').load('examples/jquery/load/my-include-file.inc');
});