Advertisement
Guest User

Untitled

a guest
Jul 17th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. $(function () {
  2. $('#sendDataFromCalc').on('click',
  3. function (event) {
  4. event.preventDefault();
  5. sendForm();
  6. });
  7.  
  8.  
  9. function sendForm() {
  10. var data = $('#formForCalculator').serializeArray();
  11.  
  12. $.post('/calculator/submit.php', data, function(data, status) {
  13. if( status == 'success' ){
  14. alert('Данные успешно отправлены!');
  15. }else{
  16. alert('В процессе отправки произошла ошибка :(')
  17. }
  18. })
  19. }
  20.  
  21. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement