Guest User

Untitled

a guest
Feb 16th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. $.ajax({
  2. url: Joomla.getOptions('system.paths').base+'/index.php?option=mypage&view=cartcheckout&task=cartcheckout_autoSave&tmpl=component&stepId='+stepId,
  3. type: 'POST',
  4. //async:false,
  5. data:values,
  6. dataType: 'json',
  7.  
  8. success: function(response)
  9. {
  10. // do something
  11. },
  12. error: function(response)
  13. {
  14. // show ckout error msg
  15. console.log(' ERROR!!' );
  16. return e.preventDefault();
  17. }
  18. });
  19.  
  20. Joomla.getOptions('system.paths').base+'/index.php?option=mypage&view=cartcheckout&task=cartcheckout_autoSave&tmpl=component&stepId='+stepId
  21.  
  22. url:'/index.php?option=com_mypage&view=cartcheckout&task=cartcheckout_autoSave&tmpl=component&stepId='+stepId,
Add Comment
Please, Sign In to add comment