The add files button is not working in IE8 and IE9 (Works fine in IE7, and firefox and chrome). After clicking the button, the screen just moves slightly then nothing happens.
All uploaders are disabled but HTML 4 to narrow down the problem
<DIV class="plupload_wrapper plupload_scroll">
<DIV id=fileList_container class=plupload_container title="Using runtime: html4">
<DIV class=plupload>
<DIV class=plupload_header>
<DIV class=plupload_header_content>
<DIV class=plupload_header_title>Select files</DIV>
<DIV class=plupload_header_text>Add files to the upload queue and click the start button.</DIV></DIV></DIV>
<DIV class=plupload_content>
<DIV class=plupload_filelist_header>
<DIV class=plupload_file_name>Filename</DIV>
<DIV class=plupload_file_action> </DIV>
<DIV class=plupload_file_status><SPAN>Status</SPAN></DIV>
<DIV class=plupload_file_size>Size</DIV>
<DIV class=plupload_clearer> </DIV></DIV>
<UL id=fileList_filelist class=plupload_filelist></UL>
<DIV class=plupload_filelist_footer>
<DIV class=plupload_file_name>
<DIV class=plupload_buttons><A id=fileList_browse class="plupload_button plupload_add" href="https://plopes.rform.ca/members/Document/Document.php?pid=7D3A33A8-4EC6-4EF2-87F3-8AECC96E4A01&g=1D6200FD-7247-4D48-8718-D7953E94070E#">Add files</A><A class="plupload_button plupload_start plupload_disabled" href="https://plopes.rform.ca/members/Document/Document.php?pid=7D3A33A8-4EC6-4EF2-87F3-8AECC96E4A01&g=1D6200FD-7247-4D48-8718-D7953E94070E#" jQuery1705384515029763137="3">Start upload</A></DIV><SPAN class=plupload_upload_status></SPAN></DIV>
<DIV class=plupload_file_action></DIV>
<DIV class=plupload_file_status><SPAN class=plupload_total_status>0%</SPAN></DIV>
<DIV class=plupload_file_size><SPAN class=plupload_total_file_size>0 b</SPAN></DIV>
<DIV class=plupload_progress>
<DIV class=plupload_progress_container>
<DIV class=plupload_progress_bar></DIV></DIV></DIV>
<DIV class=plupload_clearer> </DIV></DIV></DIV></DIV></DIV><INPUT id=fileList_count name=fileList_count value=0 type=hidden></DIV>
<FORM style="POSITION: absolute; WIDTH: 0px; HEIGHT: 0px; OVERFLOW: hidden; TOP: 0px; LEFT: 0px" id=form_p189en3okbjsv1mr74ep1ikkb0c1 encType=multipart/form-data method=post target=p189en3ok3vgi15201kqc2at17sf0_iframe enctype="multipart/form-data"><INPUT style="FILTER: alpha(opacity=0); WIDTH: 100%; HEIGHT: 100%; FONT-SIZE: 99px; CURSOR: pointer; opacity: 0" id=input_p189en3okbjsv1mr74ep1ikkb0c1 accept="" size=1 type=file Plupload_p189en3okc1vbt1kceog55lu1shv2="p189en3okc8vp105o1g4m96uvun3"></FORM>
var uploader = $("#fileList").pluploadQueue({
// General settings
runtimes: runtime,
max_file_size: maxsize,
chunk_size : '500kb',
url: theURL,
init: {
StateChanged: function(up) {
// When plupload has finished uploading files.
//reload so that the plupload add and start buttons reappear
if(up.state==plupload.STOPPED)
{
loadPlupload();
}
},
FileUploaded: fileUploadFunc
}});