You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
!function ($){
|
|
|
|
$('#id_country').onchange = function(){alert('111');}
|
|
|
|
$('.pcm-next, .pcm-prev').on('click', function(e){
|
|
e.preventDefault();
|
|
var url = $(this).attr('href');
|
|
$.get(url, handleCalendar);
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}(jQuery);
|
|
|
|
handleCalendar = function(data){
|
|
|
|
console.log(data);
|
|
}
|
|
|