Facebook
From Sexy Cheetah, 4 Years ago, written in jQuery 1.3.
This paste is a reply to Re: Untitled from Putrid Wolf - go back
Embed
Viewing differences between Re: Untitled and Re: Re: Untitled


          
          //tresc formularza//
          
                        
                        Zapisz i wyślij
        
$('document').ready(function() {
        
         $('button[type="submit"]').click(function (event) {
        event.preventDefault();


        $.post("/addoffer", function () {
            iziToast.show({
                title: 'Sukces',
                message: 'Oferta została dodana pomyślnie.',
                position: 'topRight',
                timeout: 500000,
                color: 'green'
            });

        }).fail(function () {
            iziToast.show({
                title: 'Błąd',
                message: 'Coś poszło nie tak!',
                position: 'topRight',
                color: 'red'
            });
        });
    });
});