Advertisement
Guest User

Untitled

a guest
Apr 4th, 2015
486
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <html>
  2. <body>
  3. <script>
  4. var request = new XMLHttpRequest();
  5. request.open('GET', 'http://search.crossref.org/dois?q=hallo', true);
  6. request.addEventListener('load', function(){
  7.      console.log(request.response);
  8. });
  9.  
  10. request.send();
  11. </script>
  12. </body>
  13. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement