javascript - Loading blogspot article into a div with jquery -


i using code below load blogspot article dynamically div have no chance make work. want load blogspot articles. other pages loaded normal

can me out?

here code:

before close head tad:

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>  <script type="text/javascript">  jquery(function(){    jquery('#pagecontainer').load('http://thesecretrealtruth.blogspot.com/2013/07/blog-post_9623.html', function(){alert('content loaded.')} );   }); </script> 

in body tag:

<div id="pagecontainer" style="width:300px; height:250px;"></div> 

you cannot load contents domain. more information here


Comments