i have a form like this:
<form method=post src=upload enctype="multipart/form-data">
<input name="img1" id="img1" type="file">
<input type="submit" value="Upload">
</form >
Please how can I valid this form using javascript so that only jpg files are uploaded. thanks for reading.
You can bind the
onsubmitevent of your form, and check if thevalueof your file input ends with “.jpg” or “.jpeg”, something like this:Check the above example here.