Im using a jquery ajax file upload: http://jquery.malsup.com/form/#getting-started
<input type="file" id="foo" name="foo" />
My problem is that the jquery change event does not fire:
$('#foo').change(function(){
console.log('change');
});
Ive tried using the on('change', function(){ })
method as well, without success.
Any help is appreciated. Thanks