I have a requirement to parse through the entire content and find links and if the links have the extension like pdf, doc, xls, ppt then add the filetype and filesize next to the link.
I found an example of getting the file size using jQuery in Stack Overflow using getResponseHeader("Content-Length") but this one is always returning the same file size for every link.
Anyone has sample for this? Any help is highly appricated.
My current code (I am not checking the extensions still)
<script type="text/javascript">
$(document).ready(
function () {
$('a').each(function (index, obj) {
var eleHref = $(obj).attr('href');
var extension = eleHref.substr((eleHref.lastIndexOf('.') + 1)).toUpperCase();
var request;
request = $.ajax({ type: "HEAD", url: $(eleHref).val(), success:
function () {
$(obj).append(" (" + extension + ", " + parseFloat(request.getResponseHeader("Content-Length") / 1024).toFixed(2) + 'KB)');
}
});
})
});
</script>