Advertisement
kubasal

class-window

Apr 21st, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. class Window {
  2.     constuctor(id, layout) {
  3.         this.id = id;
  4.         this.layout = layout;
  5.     }
  6.  
  7.     getLayout() {
  8.         $.ajax({url: window.php, type: "POST", data: {id: this.id}, success: function(response) {
  9.             this.layout.innerHTML = response;
  10.         }});
  11.     }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement