I have a
When I\'m using: alert($(\"#uploadPicture\").val());
alert($(\"#uploadPicture\").val());
It ale
$('input[type=file]').val()
That'll get you the file selected.
However, you can't set the value yourself.