This forum is a community forum meant for users of the plugin to collaborate and help solve issues with implementation, etc. Unfortunately, as the creator of the plugin, I do not have much time to attend to every request here as this is only a side project and I must work a full-time job to provide for my family. This is how I keep the Flash version free and the HTML5 version low cost.
UploadiFive 1.1.1 has been released which includes a small fix for added support on touch devices including iOS 6 devices.
File Tag Attribute
  • I have a system where I am uploading multiple attachments, but the specifics that go into a database after the upload is successful and it would be helpful if it could use non-standard tag attributes like queueID="" in the input:file tag. Then I could just apply uploadify to a class catching all the tags, and things like queueID and postData could be set for each input:file tag.

    <input type="file" name"coverLetter" id="coverLetter" class="uploadify" queueID="coverLetterQue" postData="{'fileType':'coverLetter','applicantID':1}" ... >
    <input type="file" name"cv" id="cv" class="uploadify" queueID="cvQue" postData="{'fileType':'cv','applicantID':1}" ... >
    ...
    $('.uploadify').uploadify( ...