Guest User

Untitled

a guest
Aug 30th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. HTML upload FILE
  2. <input type="file" id="fighter2_upload" name="fighter2_upload" size=48>
  3.  
  4. if ( ! document.getElementById('upload-file').value.match(/.jpe?g$/)) {
  5. alert('JPEG files only');
  6. }
  7.  
  8. if((document.form1.upload.value.lastIndexOf(".jpg")==-1) {
  9. alert("Please upload only .jpg extention file");
  10. return false;
  11. }
Add Comment
Please, Sign In to add comment