<div id="result"></div>
jQuery.ajax({
url: '//product.php',
type: 'POST',
contentType: 'application/x-www-form-urlencoded',
dataType: 'html',
async: true,
data: {
order_id: order_id,
},
complete: function() {
jQuery.await("close");
},
})
.done(function(result){
$('#result').html(result);
});
[].sort(function(a, b){return a -b});
$('a[data-link]').on('click', function(e){
e.preventDefault();
$('.popup iframe').attr('src', '/3d-model/' + $(this).data('link'))
});
<a href="#" class="btn-back" id="myBtn">Подробнее<i class="fa fa-angle-right"></i> </a>
$(document).on('click', '#myBtn', function(e){
e.preventDefault();
$('div.hide-info1').toggle('normal', function(){
// код слайдера
});
this.text = this.text == 'Свернуть' ? 'Подробнее' : 'Свернуть';
});
$(elem).on('mousedown', function(){
$(this).data('drag', true);
});
$(document).mousemove(function(){
var d = $.filter(function(el){
return $(el).data(drag);
})
console.log(d); // тут все драгаемые элементы
});
$(document).on('mouseup', function(){
$('*').data('drag', false);
});
var country;
getValue(function(response) {
country = response.country;
// тут делаем что-то с кантри.
});
// тут country всегда будет undefined (как правило)