Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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

share|improve this question
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
1  
Note that this is subject to the Same Origin Policy. en.wikipedia.org/wiki/Same_origin_policy – ripper234 Oct 6 '11 at 21:10
@mclaughlinj I am also trying to do same as you. I have url which opens an email. I can execute that in browser but not through Get method of http client as it uses javascript. In my case I dont know which java script function or code is executed to open that url. Could you pl tell me how do I trace that code ? because I dont know java script. – Ragini Jul 5 '12 at 9:24

12 Answers

up vote 68 down vote accepted

In jQuery:

$.get(
    "somepage.php",
    {paramOne : 1, paramX : 'abc'},
    function(data) {
       alert('page content: ' + data);
    }
);
share|improve this answer
3  
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
2  
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

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;
    }
share|improve this answer
gracies !!!! it useful for me – bizzare Jan 31 '12 at 7:20
thanks, nice code – egza Feb 27 '12 at 6:15
This made my day. Sometimes, good old javascript works way better than all the frameworks. – motiver Jan 24 at 22:17
2  
Actually, that feature is not built into any of the ECMAScript implementations, but it is provided by the host environment through a (now formally specified) API that has an ECMAScript binding. BTW, avoid synchronous request-response handling (false) because due to single-threaded execution that will block the user interface until the response has been received or the request timed out. – PointedEars Feb 4 at 11:18
this works in all major browsers except IE6 and IE5 – Olle89 Mar 6 at 19:30
show 1 more comment

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;
        }                    
    }
}
share|improve this answer

A version without callback

var i = document.createElement("img");
i.src = "/your/GET/url?params=here";
share|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
4  
does this work in all browsers? – dev_musings Oct 27 '11 at 1:06
1  
does this work with text also? – knutole Jan 21 at 2:24

Prototype makes it dead simple

new Ajax.Request( '/myurl', {
  method:  'get',
  parameters:  { 'param1': 'value1'},
  onSuccess:  function(response){
    alert(response.responseText);
  },
  onFailure:  function(){
    alert('ERROR');
  }
});
share|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

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.

share|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
and change the end to (new Date()).getTime(); – Timores Oct 17 '12 at 10:20

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

share|improve this answer

AJAX.

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

share|improve this answer

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;
});
share|improve this answer

Here's the example in jQuery

share|improve this answer

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.

share|improve this answer

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.

share|improve this answer

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.