I have a file input element
How do I call a JavaScript function after selecting a file from the d
This tested code helps you:
$("body").on('change', 'input#fileid',function(){ alert($(this).val());});