0

<a href="files/doc_downloads/governance_docs/Whistleblower_and_Complaint_Policy.pdf" target="_blank" class="ModuleHeadlineLink">
  <span class="ModuleHeadline">Whistleblower and Complaint Policy</span> filesize
</a>
guradio
  • 15,524
  • 4
  • 36
  • 57
user7364147
  • 11
  • 1
  • 1

1 Answers1

1

Not sure about your application in details but I have written a small one for my application to get the file size without downloading :

  var req;
  req = $.ajax({
    type: "HEAD",
    url: $("#url").val(),
    success: function () {
      alert("Size is " + request.getResponseHeader("Content-Length"));
    }
  });

Hope this helps.

Ria Sen
  • 94
  • 13