As far as I can tell you have to manually add the desired extra
variables to the url query string, like so:

$.ajaxFileUpload
        (
            {
                url:'ajax_fileUpload.cfm?createpoloroid=' + $
("#createpoloroid").val() + '&createmedium=' + $
("#createmedium").val(),
                secureuri:false,
                fileElementId:"fileToUpload"
                dataType: 'json',
                success: function (data, status)


Good luck...


On Apr 17, 6:27 am, "Chris Davies" <[EMAIL PROTECTED]> wrote:
> Hi, I am trying to pass multiple form fields to the ajax_fileUpload.cfm page
> with no success.  Is it possible to send a list of form ID's as I am trying
> below?
>
> $.ajaxFileUpload
>         (
>             {
>                 url:'ajax_fileUpload.cfm',
>                 secureuri:false,
>                 fileElementId:*'fileToUpload,createpoloroid,createmedium',*
>                 dataType: 'json',
>                 success: function (data, status)
>
> Thanks!

Reply via email to