Often when you want to display content from remote sites or applications seamlessley on your own site, an iframe is the quickest and easiest solution. Here's how you open one using JavaScript:
<div id="feed"></div> <script> var ifrm = document.createElement('iframe'); ifrm.width = '460px'; ifrm.height = '80px'; ifrm.src = 'http://someremoteurl.com/'; ifrm.frameBorder = 0; ifrm.scrolling = "no"; document.getElementById('feed').appendChild(ifrm); </script>