Chrome console is telling me that the following is missing a bracket:
Uncaught SyntaxError: missing ) after argument list
Here is my javascript:
<script type="text/javascript">
$(document).ready(function(){
$(document).on('change', 'input[type='file']', function() {
});
});
</script>
Any thoughts as to why? Thank you!