Previously I had thought that there were only ways to get content from external URLs into your page. These 2 ways are use an IFRAME or Javascript to include it into your pages.
I've just learned of a new way using the tag.
<object type="text/html" frameborder="0" data="http://Server/URL/"></object>
I have found some content online that confirms this ability, but it doesn't talk much about features such as Accessibility and SEO of the page.
UPDATE: I'm not looking for information on HOW to use this method, looking for information regarding what happens to my page when i use this method, such as:
- Accessibility: will screenreaders still be able read my document as if the content was included via a server side include.
- SEO: will google still be able to index this content?
- Javascript: I have seen some of the articles talk about still being able to use JS like this, but are there any security implications.
The bottom line, this is not a well know method, so there's not much available online (that I can find anyway) so i'm looking to see if anyone has had experience implementing this method. Thanks!