I need to get an element with a div id from an external web page.
This is the code I tried to work with but it doesn't return anything.
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title>TEST</title>
    <style>
      body {
        font-size: 12px;
        font-family: Arial;
      }
    </style>
    <script src="https://code.jquery.com/jquery-1.10.2.js"></script>
  </head>
  <body>
  <b>Output:</b>
  <ol id="tablepress-34_wrapper"></ol>
  <script>
    $( "#tablepress-34_wrapper" ).load( "https://mrafiee.net/daily-bonus-digital-communication/" );
  </script>
  </body>
</html>
For example, I want to get the table showing in that page in another external page. How can I do it ? Thanks
 
     
    