Learn to get content from another page & display them using jQuery
<script type="text/javascript">
var content = $.ajax({
url: "default.html",
async: false
}).responseText;
//set the value of the content into a textarea by creating a textarea & setting the content value to it.
$("#data").attr("value", content);
</script>
Related posts:
