1. Putting it all together

  2. Pattern recognition

  3. Abstraction

    function Hijax() {
    }
  4. Capture form data

    this.captureData = function() {
  5. Capture link data

    } else {
    }
  6. Create an instance

    var start = function() {
    };
  7. Begin the Ajax request

    var initiateRequest = function() {
    };
  8. Complete the Ajax request

    var completeRequest = function() {
    };
  9. Public methods

    function Hijax() {
      this.setContainer = function(value) { };
      this.setUrl = function(value) { };
      this.setCanvas = function(value) { };
      this.setLoading = function(value) { };
      this.setCallback = function(value) { };
      this.captureData = function() { };
    }
  10. Private methods

    function Hijax() {
      var start = function() { };
      var getHTTPObject = function() { };
      var initiateRequest = function() { };
      var completeRequest = function() { };
    }
  11. Using the object

  12. Example

    Bulletproof Books

  13. Error handling

  14. Timing out

  15. Next...

    The future of Ajax