RosettaCodeData/Task/HTTP/JavaScript/http-3.js

8 lines
156 B
JavaScript
Raw Permalink Normal View History

2023-12-16 21:33:55 -08:00
var req = new XMLHttpRequest();
req.onload = function() {
console.log(this.responseText);
};
2023-07-01 11:58:00 -04:00
2023-12-16 21:33:55 -08:00
req.open('get', 'http://rosettacode.org', true);
req.send()