Are there any JavaScript events in type=file
input? I.E. I would like to add an extra file input
upon selecting file in one of allready created:
Here is the event logged by Firebug when selecting a file with Firebug:
I guess change, is the one you are looking for:
$ ('#your_form_id input[type=file]').live ('change', function () {
$(this).parent ().append ($(''));
})
you just have to adapt the selector and the previous code should work