I need to do an HTTP GET request in JS, what's the best way to do that?

Thanks

EDIT: I need to do this in a Mac OS X dashcode widget

link|improve this question

77% accept rate
Thanks for all the answers! I went with jQuery based on some things I read on their site. – mclaughlinj Oct 29 '08 at 16:44
Note that this is subject to the Same Origin Policy. en.wikipedia.org/wiki/Same_origin_policy – ripper234 Oct 6 '11 at 21:10
feedback

12 Answers

up vote 41 down vote accepted

In jQuery:

$.get(
    "somepage.php",
    {paramOne : 1, paramX : 'abc'},
    function(data) {
       alert('page content: ' + data);
    }
);
link|improve this answer
1  
This is wrong. jQuery's get method does not return the result, though it allows you to specify a callback. – Daniel Beardsley Oct 30 '08 at 3:59
1  
I've edited and changed the example. – nickf Oct 30 '08 at 4:10
1  
My apologies! Thanks for editing. – Pistos Oct 30 '08 at 4:46
feedback

Here is code to do it directly with JavaScript. But, as previously mentioned, you'd be much better off with a JavaScript library. My favorite is jQuery.

In the case below, an ASPX page (that's servicing as a poor man's REST service) is being called to return a JavaScript JSON object.

var xmlHttp = null;

function GetCustomerInfo()
{
    var CustomerNumber = document.getElementById( "TextBoxCustomerNumber" ).value;
    var Url = "GetCustomerInfoAsJson.aspx?number=" + CustomerNumber;

    xmlHttp = new XMLHttpRequest(); 
    xmlHttp.onreadystatechange = ProcessRequest;
    xmlHttp.open( "GET", Url, true );
    xmlHttp.send( null );
}

function ProcessRequest() 
{
    if ( xmlHttp.readyState == 4 && xmlHttp.status == 200 ) 
    {
        if ( xmlHttp.responseText == "Not found" ) 
        {
            document.getElementById( "TextBoxCustomerName"    ).value = "Not found";
            document.getElementById( "TextBoxCustomerAddress" ).value = "";
        }
        else
        {
            var info = eval ( "(" + xmlHttp.responseText + ")" );

            // No parsing necessary with JSON!        
            document.getElementById( "TextBoxCustomerName"    ).value = info.jsonData[ 0 ].cmname;
            document.getElementById( "TextBoxCustomerAddress" ).value = info.jsonData[ 0 ].cmaddr1;
        }                    
    }
}
link|improve this answer
feedback

What the heel about all those fancy libraries, JavaScript has it built-in:

    function httpGet(theUrl)
    {
    var xmlHttp = null;

    xmlHttp = new XMLHttpRequest();
    xmlHttp.open( "GET", theUrl, false );
    xmlHttp.send( null );
    return xmlHttp.responseText;
    }
link|improve this answer
gracies !!!! it useful for me – bizzare Jan 31 at 7:20
thanks, nice code – egza Feb 27 at 6:15
feedback

A version without callback

var i = document.createElement("img");
i.src = "/your/GET/url?params=here";
link|improve this answer
Nice work around! – Darknight Feb 19 '11 at 14:02
that's a cool hack! :) – Gordon Carpenter-Thompson Mar 8 '11 at 13:52
1  
does this work in all browsers? – dev_musings Oct 27 '11 at 1:06
feedback

Prototype makes it dead simple

new Ajax.Request( '/myurl', {
  method:  'get',
  parameters:  { 'param1': 'value1'},
  onSuccess:  function(response){
    alert(response.responseText);
  },
  onFailure:  function(){
    alert('ERROR');
  }
});
link|improve this answer
The problem is that Mac OS X doesn't come with Prototype pre-installed. As the widget needs to run in any computer, including Prototype (or jQuery) in each widget is not the best solution. – kiamlaluno Aug 7 '10 at 5:05
feedback

In your widget's Info.plist file, don't forget to set your AllowNetworkAccess key to true.

link|improve this answer
feedback

AJAX.

You'd be best off using a library such as prototype or jquery

link|improve this answer
feedback

IE will cache URLs in order to make laoding faster, but if you're, say, polling a server at intervals trying to get new information, IE will cache that URL and will likely return the same data set you've always had.

Regardless of how you end up doing your GET request - vanilla JavaScript, Prototype, jQuery, etc - make sure that you put a mechanism in place to combat caching. In order to combat that, append a unique token to the end of the URL you're going to be hitting. This can be done by:

var sURL = '/your/url.html?' + new Date.getTime();

This will append a unique timestamp to the end of the URL and will prevent any caching from happening.

link|improve this answer
1  
you probably want to put a ? between the .html and the date however – Gordon Carpenter-Thompson Mar 8 '11 at 13:54
Nice catch! Done :) – Tom Mar 8 '11 at 20:55
feedback

Here's the example in jQuery

link|improve this answer
feedback

The best way is to use AJAX ( you can find a simple tutorial on this page Tizag). The reason is that any other technique you may use requires more code, it is not guaranteed to work cross browser without rework and requires you use more client memory by opening hidden pages inside frames passing urls parsing their data and closing them. AJAX is the way to go in this situation. That my two years of javascript heavy development speaking.

link|improve this answer
feedback

I'm not familiar with Mac OS Dashcode Widgets, but if they let you use javascript libraries and support XMLHTTPRequests, I'd use jQuery and do something like this:

var page_content;
$.get( "somepage.php", function(data){
  page_content = data;
});
link|improve this answer
feedback

If you want to use the code for a Dashboard widget, and you don't want to include a JavaScript library in every widget you created, then you can use the object XMLHttpRequest that Safari natively supports.

As reported by Andrew Hedges, a widget doesn't have access to a network, by default; you need to change that setting in the info.plist associated with the widget.

link|improve this answer
feedback

protected by alex Apr 11 '11 at 23:58

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.