java - Validate File Selection while uploading -
is there anyway can check whether file selected or not ? working on user registration , need check whether user selects profile picture or not ? if doesn't select picture display error message.
if have html like
<input id="profile_pic" type="file" />
you can use javascript check if value null, before submitting
document.getelementbyid("profile_pic").value
Comments
Post a Comment