Pull HTML content from remote website and display on page
Been working on this for a little while now and am stumped. I am attempting to pull the content from within a specific div on a remote website page and then insert that html into a div on my own website. I know that you cannot solely use jQuery's .ajax, .load, or .get methods for this type of operation. Here's the remote page's HTML: <html> <body> <div class="entry-content"> <table class="table"> ...table #1 content... ...More table content... </table> <table class="table"> ...table #2 content... </table> <table class="table"> ...table #3 content... </table> </div> </body> </html> Goal: I am