I am a bit new to web based material so please bear with me.
I have two html pages on my local drive. Test1.html and test2.html.
How could I take test2.html's contents and place them into test1.html's body?
I have looked into using w3IncludeHTML();
along with things like jQuery .load()
Test1.html
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
</head>
<body>
<p id="text"></p>
<script type="text/javascript">
$('#text').load("test2.html");
</script>
</body>
</html>
Test2.html
<ul class='myclass'>
<li>test li one</li>
<li>test li two</li>
<li>test li three</li>
</ul>
` that contains it so it is existing in th DOM at execution time
– mplungjan Dec 27 '16 at 17:32