$('#formsub').on('submit', function ()
{
event.preventDefault();
var name = $("#fio").val();
var number = $("#tel").val();
var price = $("#price option:selected").text();
var pricenum = $("#price").val();
var category = $(this).data('id');
$.ajax(
{
url:'index.php?r=category/gynecology',
/*url:window.location,*/
data: {a:[name,number, price, category , pricenum ]},
type: 'POST',
success: function (res) {
alert('Ваш заказ принят, мы свяжемся с Вами для подтверждения заказа.');
//setTimeout( 'location="index.php?r=site/index";', 5);
console.log(res);
},
error: function () {
alert('Ошибка отправки заявки');
}
}
);
});
@media screen and (min-width: 993px) {
.contact .row {
display: flex;
flex-wrap: wrap;
}
.contact .col-md-6 {
margin-top: 30px;
}
.contact .panel {
display: flex;
flex-direction: column;
height: 100%;
}
.contact .panel-body {
flex-grow: 1;
}
}
.styled-pagination ul li.next {
line-height: 50px;
font-size: 16px;
width: 50px;
height: 50px;
color: #777777;
font-weight: 500;
text-align: center;
background: #f4f4f4;
border-radius: 4px;
transition: all 500ms ease;
}
.styled-pagination ul li:hover, .styled-pagination ul li.active {
color: #ffffff;
background: #48bdc5;
transition: all 500ms ease;
}