Bear with me, I'm not a programmer.
Is there a JavaScript or software or something that can take a chunk of HTML from a page that sits in one domain, and use it/parse it in another page that sits in a different domain?
Let me make a quick example:
On domain A - a.com is this HTML:
<div>
  <ul>
    <li>Item 1</li>
    <li>Item 1</li>
    <li>Item 1</li>
  <ul>
  <p>Pargraph info...</p>
  <table>
    ...
  <table>
</div>
On domain B -- b.com I would like to use only the <table> from domain a.com
Is this doable?
Any help on this is greatly appreciated.
Thanks.