JSFiddle - React, Tailwind, and code Playground

by charlescarver

JavaScript

$.ajax({
  url: "http://i.imgur.com/V8w9fKt.gif",
    type: "GET",
  beforeSend: function( xhr ) {
    var totalBytes  = thisXHR.getResponseHeader('Content-length');
    var dlBytes     = thisXHR.responseText.length;
      console.log(totalBytes, dlBytes);
  }
}).done(function( data ) {
    console.log(data);
});