Código Javascript:
Ver original
$(document).ready(function(){ new AjaxUpload('#btn_upload', { action: 'php/upload.php', name: 'Filedata', onSubmit : function(file , ext){ if (ext && /^(mp3)$/.test(ext)){ /* Setting data */ this.setData({ 'key': 'This string will be send with the file' }); $('#btn_upload').hide(); $('.text').show(); $('#uploadfile .text').text('Uploading: ' + file); } else { $('#btn_upload').hide(); $('.text').show(); $('#uploadfile .text').text('Error: only MP3 is allowed'); return false; } }, onComplete : function(file){ $('#uploadfile .text').text('Uploaded: ' + file); } }); }); </script>
He intentado anadir
Código Javascript:
pero no consigo hacerlo funcionar. Espero que alguien me pueda ayudar con esto, muchas gracias adelantados!! Ver original
substr(bytesLoaded*100/bytesTotal)