I am trying to use the PHP File Uploader for jQuery. https://github.com/CreativeDream/php-uploader
I have a custom method to upload to my server, I just cant figure out what parameter to pass to my custom method from this plugin.
I don't what you mean with custom method but in php-uploader you can:
uploadFile
(currently on line 258)you can also use your own callbacks ("onCheck", "onSuccess", "onUpload", "onComplete"). Ex:
'onUpload' => 'your_function_name_that_you_declared_anywhere_in_code'