Skip to content

Instantly share code, notes, and snippets.

@code-for-coffee
Created May 30, 2015 17:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save code-for-coffee/ee0f7c599cd70f2bd76f to your computer and use it in GitHub Desktop.
Save code-for-coffee/ee0f7c599cd70f2bd76f to your computer and use it in GitHub Desktop.
update-form event
// prevent our form from submitting via POSTBACK
$(form).on('submit', function(event) {
event.preventDefault();
var fileAsBase64 = convertToBase64($(fileInput).prop('files')[0])
// now, you can sent your file over via an $ajax call!
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment