displaying upload Error message and Progress bar - DFP
I have placed the missing script line in the page, of which I guessed where to put it as you didn't explain this. The progress bar now appears and gets stuck. I got this far by removing all code for the success message as I do not understand where this should be placed. I tried the debug info and it gave me a list of results of which mean nothing to me. It would be helpful if you could simply illustrate the order of code placement for both progress bar and success message for this to work as this is where I feel your set up guide fails to explain fully. below is my current block of code without success message
######################################################
<div id="content">
<div id="upload_form_ProgressWrapper">
<form action="" method="post" enctype="multipart/form-data" id="upload_form" name="upload_form">
<label>Upload Form</label>
<input name="upload" type="file" id="upload" />
<br />
<input name="submit" type="submit" id="submit" />
</form>
</div>
</div>
<script src="WA_DigitalFilePro/jquery-blockui-formprocessing.js"></script>
<div id="upload_form_ProgressMessageWrapper" class="blockUIOverlay" style="display:none;">
<script type="text/javascript">
WADFP_SetProgressToForm('upload_form', 'upload_form_ProgressMessageWrapper', WADFP_Theme_Options['SmallSpin:Nautica']);
</script>
<div id="upload_form_ProgressMessage" >
<p style="margin:10px; padding:5px;" ><img src="WA_DigitalFilePro/images/nautica-smallspin.gif" alt="" title="" style="vertical-align:middle;" /> Please wait</p>
</div>
</div>
#######################################################