Skip to content

Instantly share code, notes, and snippets.

View AndyDeNike's full-sized avatar
💭
Set your status

AndyDeNike

💭
Set your status
View GitHub Profile
@niczak
niczak / gist:5470218
Last active April 12, 2021 08:22
Check file extension w/ JavaScript
function checkFile(file) {
var extension = file.substr((file.lastIndexOf('.') +1));
if (!/(pdf|zip|doc)$/ig.test(extension)) {
alert("Invalid file type: "+extension+". Please use DOC, PDF or Zip.");
$("#file").val("");
}
}