jQuery('form').submit(function(e) {
var dosya = jQuery('#uploader').plupload();
if (dosya.files.length > 0) {
alert("gg");
dosya.bind('UploadProgress', function() {
if (dosya.total.uploaded == dosya.files.length)
jQuery('form').submit();
});
dosya.start();
} else if (dosya.files.length <= 0) {
alert('alert alert alert');
}
e.preventDefault();
});
I'm getting this error during the post process Uncaught TypeError: Cannot read property 'length' of undefined ** Can someone help me**