1<html>
2 <head>
3 <script src="jquery.js"></script>
4 <script>
5 $(function(){
6 $("#includeContent").load("fileName.html");
7 });
8 </script>
9 </head>
10
11 <body>
12 <div id="includeContent"></div>
13 </body>
14</html>