Advertisement
julong

My Ajax

Aug 4th, 2014
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. ////////////////////////////////////////////////////////////////////////////////////////////////////////////
  2. //////////////////
  3. //////////////////
  4. ////////////////// Author : EAKKASIT TUNSAKOOL
  5. ////////////////////////////////////////////////////////////////////////////////////////////////////////////
  6.  
  7. $('#submit').click(function(){
  8.  
  9. $.ajax({
  10. type: "POST",
  11. url: "{{URL::to('admin/welcome/settings')}}"+'/'+1,
  12. data: $('#pageSelectForm').serialize(),
  13. }).done(function(data) {
  14. console.log("ajax success");
  15. console.log(data);
  16. $('#datareturn').css('display','block');
  17. $('#datareturn').html(data.success);
  18. }).fail(function(e) {
  19. console.log("ajax errors");
  20. });
  21. event.preventDefault();
  22.  
  23. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement