having "issues" with the blueimp jquery file uploader, uploads fine, but no progress is reported back to the calling page, only in ie8/ie9.
"done" seems to work properly, its only the "progress" part that isnt working, anyone any ideas?
<script>
$(function () {
$('#video').fileupload({
forceIframeTransport: true,
dataType: 'json',
done: function (e, data) {
$.each(data.result, function (index, file) {
$('button').removeAttr('disabled');
alert(file);
$('input#upload_video').val(file.name);
$('p#filename').text(file.name+ ' Uploaded');
$('input#video').remove();
alert( $('input#upload_video').val());
});
},
progress: function (e, data) {
var progress = parseInt(data.loaded / data.total * 100, 10);
$('p#filename').text('Please wait...' +progress + '%');
},
start: function (e) {
// alert('Uploads started');
},
stop: function (e) {
// alert('Uploads finished');
},
fail: function (e, data) {
alert('Your video could not be uploaded');
$('p#filename').text('');
}
});
});
</script>