Facebook
From Bistre Baboon, 3 Years ago, written in JavaScript.
Embed
Download Paste or View Raw
Hits: 78
  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. });

Replies to Untitled rss

Title Name Language When
Re: Untitled Putrid Wolf html5 3 Years ago.