Results 1 to 2 of 2

Thread: how to grab whole remote page using java script

  1. #1
    Junior Member krlekhu's Avatar
    Join Date
    Aug 2011
    Posts
    7
    Thanks
    0
    Thanked 10 Times in 4 Posts
    Rep Power
    0

    Default how to grab whole remote page using java script

    how to grab whole remote page using java script..
    example i want to grab www.remotesite.com using java script to show its full content on other remote site..
    pls help me

  2. #2
    Senior Member something else's Avatar
    Join Date
    Feb 2008
    Location
    if($something){echo 'Status code 404'; }else{ echo 'coding-talk.com';}
    Posts
    1,819
    Thanks
    209
    Thanked 447 Times in 202 Posts
    Rep Power
    0

    Default

    You cant because of cross site scripting unless you have set permissions on the server you are trying to grab from or you have set permissions like on web browser extensions

    Added after 2 minutes:

    Here is how to do it if you have got permissions:
    PHP Code:
    <script type="text/javascript">
    var 
    xmlhttp = new XMLHttpRequest(); 
    xmlhttp.open("GET""http://remotesite.con"false); 
    xmlhttp.setRequestHeader("Content-type","application/x-www-form-urlencoded"); 
    xmlhttp.send(null); 
    var 
    respon xmlhttp.responseText
    document.write(respon);
    </script> 
    Last edited by something else; 07-09-12 at 16:19.

    [Only registered and activated users can see links. Click Here To Register...]


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. How to grab an Ajax page?
    By bloggerpost in forum Scripts Forum
    Replies: 2
    Last Post: 13-11-11, 14:46
  2. Grab page needs session
    By atef in forum Scripts Forum
    Replies: 11
    Last Post: 31-03-11, 13:18
  3. Java Script HELP
    By bOrN2pwn in forum Site / Script testing and error fixing
    Replies: 1
    Last Post: 03-01-10, 13:36
  4. Java Script In Xhtml Page
    By wizard in forum Scripts Forum
    Replies: 8
    Last Post: 29-05-07, 11:38

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

SEO by vBSEO

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19