Advertisement
Guest User

Untitled

a guest
Jun 29th, 2015
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. // prevent our form from submitting via POSTBACK
  2. $(form).on('submit', function(event) {
  3. event.preventDefault();
  4. var fileAsBase64 = convertToBase64($(fileInput).prop('files')[0])
  5. // now, you can sent your file over via an $ajax call!
  6.  
  7. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement