The code below is taken from this fiddle.
$('#upload').change(function(){
alert();
});
<input type='file' id='upload' name='image[]' multiple='multiple' />
I have an input file use jquery detect when user change the files but I have trouble because its multiple files upload in Safari 5.1
ex. 3 files - 1.jpg, 2.jpg, 3.jpg
If the user clicks 1.jpg first, then changes his mind, clicks 1.jpg & 2.jpg, it will not works because 1.jpg didn't change,
Is there any way to solve this problem?