Jquery loads the HTML sample code in the specified DIV


Let’s start with Jquery


<script src="js/jquery.js"></script>

Add JS to the page


<script>
$(function(){
$("div#top_sidebar").load("top_sidebar.html");
})
</script>

#top_sidebar is the ID of the specified DIV