Guest User

Untitled

a guest
Feb 19th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.36 KB | None | 0 0
  1. var request = new Request.HTML({
  2.     url: 'nyttinnehall.html',
  3.     method: 'get',
  4.     onRequest: function(){
  5.     },
  6.     onSuccess: function(responseTree){
  7.         responseTree[0].inject(document.body);
  8.     },
  9.     onFailure: function(){
  10.         alert('det blev fel, säg till admin att skärpa sig');
  11.     }
  12. });
  13. request.send();
  14.  
  15. // nyttinnehall.html
  16. <div id="addImages">
  17.     <img src="" />
  18. </div>
Add Comment
Please, Sign In to add comment