Skip to content

Instantly share code, notes, and snippets.

@pbassut
Last active August 29, 2015 14:13
Show Gist options
  • Save pbassut/598df0c36377d44407fa to your computer and use it in GitHub Desktop.
Save pbassut/598df0c36377d44407fa to your computer and use it in GitHub Desktop.
<script>
$("#my_upload_form").bind("submit", function() {
var ext = $('#my_file_field').val().split('.').pop().toLowerCase();
if($.inArray(ext, ['gif','png','jpg','jpeg']) == -1) {
alert('invalid extension!');
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment