Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 7th, 2012  |  syntax: None  |  size: 0.26 KB  |  hits: 12  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <html>
  2. <body>
  3. JUHU
  4.     <script>
  5.    
  6. var req = new XMLHttpRequest();
  7. req.multipart = true;
  8. req.open("GET", "/xhr");
  9. req.onload = function(){
  10.     if (req.readyState == 4)
  11.         console.log("load:" + req.responseText);
  12. };
  13. req.send();
  14.    
  15.     </script>
  16. </body>
  17. </html>