Jump to content
  • 0

Как сделать так, чтобы при нажатии на кнопку - не перекидывало на другую ссылку?


Dikkey
 Share

Question

Сделал валидацию для кнопки через jquery-vaildate. По макету - нужно сделать так, чтобы после нажатии на кнопку, которая отправляет эту форму - закрывался этот popup и открывался следующий с уведомлением о том, что форма отправлена. Подскажите, как это сделать? Все скрины прикрепил ниже. HTML формы:

```

                <div id="modal__wrapper">
                    <div class="modal__overlay" id="modal__overlay"></div>
                        <div class="modal__window">
                            <a href="#" class="modal__close" id="modal__close"></a>
                            <div class="modal__content">
                                <h3 class="modal__title">
                                    Заказать обратный звонок
                                </h3>
                                <form action="login" class="modal__form">
                                    <input type="text" name="firstName" class="modal__item" required placeholder="Имя">
                                    <input type="email" name="mail" class="modal__item"required  placeholder="E-mail">
                                    <input type="tel" name="phoneNumber" class="modal__item" required placeholder="Телефон">
                                    <button type="submit" class="modal__btn" id="modal__btn">
                                            Заказать звонок
                                    </button>
                                </form>
                            </div>
                </div>
            </div>

```

 

Код валидации:

```

$('.modal__form').validate({
        rules: {
            firstName : {
                required : true,
                regex : "[A-Za-zА-Яа-я]{1,32}"
            },
            phoneNumber : {
                required : true,
                digits: true,
                minlength : 7,
                maxlength : 15,
                regex: "[0-9]+"
            },
            mail : {
                required : true
            }
        },
        messages : {
            firstName : 'Введите имя правильно!',
            phoneNumber : 'Введите номер правильно!',
            mail : 'Введите почту правильно!'
        }
    })

Screenshot_24.png

Screenshot_25.png

Screenshot_26.png

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy