jQuery(document).ready(function ($){
$('.article-button').on('click', function (e){
e.preventDefault();
$('.article-button').hide();
$('.wx-loader').show();
var limit=$(this).attr('data-limit');
var articlesfilter=$(this).attr('data-articlesfilter');
var data_={action: "wx_loadmore", limit: limit, articlesfilter: articlesfilter};
$.ajax({
type: "post",
dataType: "json",
url: myAjax.ajaxurl,
data: data_,
error: function (request, error){
console.log(arguments);
console.log(error);
},
success: function (response){
if(response.type=="success"){
$('#wx-see-more').html(response.dtlist)
}else{
$('#wx-see-more').html('<div>Další články nebyly nalezeny</div>')
}}
});
});
$('.wx-button-01').on('click', function(e){
e.preventDefault();
$('.wx-button-01').hide();
$('.wx-loader').show();
var misto=$(this).attr('data-slugmista');
var language=$(this).attr('data-language');
var data_={action:"wx_loadmore_e", misto: misto, language: language};
console.log(data_);
$.ajax({
type: "post",
dataType: "json",
url: myAjax.ajaxurl,
data: data_,
error: function (request, error){
console.log(arguments);
console.log(error);
},
success: function (response){
if(response.type=="success"){
$('#wx-see-more').html(response.olist)
}else{
$('#wx-see-more').html('<div>Další články nebyly nalezeny</div>')
}}
});
});
});