Advertisement
Guest User

Untitled

a guest
Sep 30th, 2016
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. $('#upload').on('click',function(){
  2. $('#upload_form').ajaxForm({
  3. url:insert_url,
  4. type:'post',
  5. target:'#preview',
  6. beforeSubmit:function(e){
  7. console.log('before');
  8.  
  9. $('.progress').show();
  10. },
  11. success:function(res, status, xhr, form){
  12. console.log('che');
  13. $('.progress').hide();
  14. },
  15. error:function(e){
  16. console.log('error');
  17.  
  18. }
  19. }).submit();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement