Hi Alexandre,

I didn't really look too closely at your code but this might help
anyway. Try removing the brackets from the bit where you assign
initializeUploader to onIni so it looks like this:

$.fn.jqUploader.defaults = {
      onIni: initializeUploader, /*remove brackets*/
// more options...
  };

Then add brackets to the bit where you actually want the function to
run so that line will look like this:

/* PROBLEM IS HERE */
$this.options.onIni(); /*add brackets*/

I think you just had those two things the wrong way around.

Joel Birch.

Reply via email to