/ Published in: jQuery
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
var xhr = $.ajax({ type: "HEAD", url: "path/to/file.ext", success: function(msg){ alert(xhr.getResponseHeader('Content-Length') + ' bytes'); } });