Using the uploadprogress plugin to show the Progress Bar during file upload and try to submit the form from success function. But it doesn't work. Here is the url of the uploadprogress:
http://nixboxdesigns.com/demos/jquery-uploadprogress.php
jQuery('#review_form').uploadProgress({
progressURL:'jquery-uploadprogress-demo-simple.php',
displayFields : ['kb_uploaded','kb_average','est_sec'],
start: function() {
jQuery('#upload-message').html('Uploading files now - please wait.');
jQuery('input[type=submit]',this).val('Uploading... PLEASE WAIT');
},
success: function() {
//$(this).unbind('submit').submit();
//$('#review_form').unbind('click');
//$('#review_form').unbind('submit');
// $('#review_form').submit();
// $('#review_form').trigger('submit');
jQuery(this).submit();
}