Advertisement
Guest User

Front-end

a guest
Feb 8th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $('form').on('submit', function(e){
  2.     var t = $(this);
  3.     e.preventDefault();
  4.  
  5.   $.ajax({
  6.     url: 'admin.php?import=true',
  7.     method: 'GET',
  8.     dataType: 'JSON',
  9.     success: function(data){
  10.         if ( data.success == true )
  11.         t.unbind('submit').submit();
  12.     }
  13.   })
  14. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement