summaryrefslogtreecommitdiffstats
path: root/examples/xmlhttprequest.js
blob: 3afddc962ffc24a9034a1ccae7681ea34ab332f3 (plain)
1
2
3
4
5
6
7
8
9
req = new XMLHttpRequest();
req.onreadystatechange = function() {
  print("onreadystatechange, state ==", req.readyState);
  if (req.readyState == 4) {
    console.log(req.responseText);
  }
};
req.open("GET", "http://labs.qt.nokia.com", false);
req.send(null);