Facebook
From Sexy Cheetah, 3 Years ago, written in jQuery 1.3.
This paste is a reply to Re: Untitled from Putrid Wolf - view diff
Embed
Download Paste or View Raw
Hits: 177
  1. $('document').ready(function() {
  2.        
  3.          $('button[type="submit"]').click(function (event) {
  4.         event.preventDefault();
  5.  
  6.  
  7.         $.post("/addoffer", function () {
  8.             iziToast.show({
  9.                 title: 'Sukces',
  10.                 message: 'Oferta została dodana pomyślnie.',
  11.                 position: 'topRight',
  12.                 timeout: 500000,
  13.                 color: 'green'
  14.             });
  15.  
  16.         }).fail(function () {
  17.             iziToast.show({
  18.                 title: 'Błąd',
  19.                 message: 'Coś poszło nie tak!',
  20.                 position: 'topRight',
  21.                 color: 'red'
  22.             });
  23.         });
  24.     });
  25. });