Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a form with input=file. I'd like to validate in with javascript/jquery and check if the file field is filled. How can I do this ?

share|improve this question
By checking its value (.val() in jQuery) – Pekka 웃 Nov 18 '10 at 22:26

2 Answers

up vote 0 down vote accepted
$(document).ready(function() {
  $('#my-form-id').submit(function(ev) {
    if (!$('#my-file-input-id').val()) {
      ev.preventDefault();
      alert('Please select a file to upload.');
    }
  });
});
share|improve this answer
if (!$('#idofinputfield').val()) {
    alert('please select a file');
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.