var tock = {
'add': function(product_id) {
$.ajax({
url: '',
type: '',
data: '',
dataType: 'json',
success: function(json) {
setTimeout(function(){
$.magnificPopup.open({
items: {
src: '',
},
type: 'ajax'
});
}, 10)
},
error: function(xhr, ajaxOptions, thrownError) {
alert(thrownError + "\r\n" + xhr.statusText + "\r\n" + xhr.responseText);
}
});
},
'remove': function() {
}
}
success: function(data){
console.log(data)
$('.answer').html(data);
},