Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.javascript > #8584
| From | SpreadTooThin <bjobrien62@gmail.com> |
|---|---|
| Newsgroups | comp.lang.javascript |
| Subject | JSONRequest is not defined? |
| Date | 2011-11-23 17:18 -0800 |
| Organization | http://groups.google.com |
| Message-ID | <3529e016-c526-41b4-ba6f-040ae6532828@n6g2000vbg.googlegroups.com> (permalink) |
Is there something I need to do to the JSONRequest to be 'included'?
Is this not some thing that is built into the browser?
function getJSONfromUrl(sourceurl)
{
try {
JSONRequest.get(sourceurl, function(sn, response, exception){
alert(exception || response);
});
}
catch(e) {
alert(e);
}
}
Back to comp.lang.javascript | Previous | Next — Next in thread | Find similar | Unroll thread
JSONRequest is not defined? SpreadTooThin <bjobrien62@gmail.com> - 2011-11-23 17:18 -0800 Re: JSONRequest is not defined? Scott Sauyet <scott.sauyet@gmail.com> - 2011-11-23 18:17 -0800
csiph-web