mirror of
https://git.sindominio.net/estibadores/wordpress.git
synced 2024-11-14 23:21:07 +01:00
42 lines
1020 B
JavaScript
42 lines
1020 B
JavaScript
jQuery(function($){
|
|
|
|
$(".squat-radar-widget.squat-radar-ajax").each(function(index, widget) {
|
|
$.ajax({
|
|
url: squat_radar_widget.ajaxurl,
|
|
context: document.body,
|
|
type: 'POST',
|
|
data: {
|
|
action: "squat_radar_events",
|
|
instance: window[widget.id],
|
|
},
|
|
success: function(result){
|
|
|
|
if (result.is_error) {
|
|
if (result.error) {
|
|
$(widget).append(
|
|
'<p>Error: ' + result.error.code + ' - ' + result.error.message + '</p>'
|
|
);
|
|
}
|
|
} else {
|
|
$(widget).empty();
|
|
$(widget).append(result.html);
|
|
// $(".squat-li a").on('click', function(e){
|
|
|
|
// if (this.hasAttribute("data-link")) {
|
|
// e.preventDefault();
|
|
// $(this).parent().find('p').show();
|
|
// this.textContent = this.getAttribute('data-nog-meer');
|
|
// this.setAttribute('href', this.getAttribute('data-link'));
|
|
// this.removeAttribute('data-link');
|
|
// }
|
|
//
|
|
// });
|
|
}
|
|
},
|
|
error: function(res){
|
|
console.log('AJAX error', res);
|
|
}
|
|
});
|
|
});
|
|
});
|