.pagination {
display: flex;
margin-bottom: 10px;
display: inline-block; // свойства только для IE
margin-bottom: 0; // свойства только для IE
sendForm(){
var info = {
value: 'Продано',
type: 'sale',
hex: '#434555'
}
var phone = document.getElementById('phone-field').value;
if(!phone.match(/\+7\s\(\d{3}\)\s\d{3}\-\d{2}\-\d{2}/)) {
return;
}
$.ajax({
type: "POST",
url: "/ajax/send.php",
data: {
phone: phone,
watch: this.show.name,
info: info
},
dataType: 'html',
success: function(data) {
var data = JSON.parse(data);
if(data.success) {
$('.callback-form').html(data.msg);
ym(54152995, 'reachGoal', 'count');
} else {
alert(data.msg);
}
}
});
},