Guest User

Untitled

a guest
Mar 17th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. <script>
  2. $("#container").load("http://example.com/your-content.html");
  3. </script>
  4.  
  5. <script>
  6. $.ajax({
  7. url:"http://example.com/your-content.html",
  8. success:function(data){
  9. // your code to extract the data you need.
  10. // you can use regex for that
  11. }
  12. });
  13. </script>
Add Comment
Please, Sign In to add comment