$(function() {
    $('#target').submit(function() {
        var send = true;
        $('#error-nick').hide();
        $('#error-email').hide();
        $('#error-mess').hide();
        if($('#nick').val() == '') {
            send = false;
            $('#error-nick').show();
        }
        if($('#e-mail').val() == '') {
            send = false;
            $('#error-email').show();
        }
        if($('#wiadomosc').val() == '') {
            send = false;
            $('#error-mess').show();
        }
        if(send == true) {
            console.log('sending..');
            return true;
        }
        return false;
    });
});
