Всем привет. Подскажите пожалуйста как можно передать data атрибут в ajax при загрузке страницы?
Есть скрипт:
function getSchedule(e){
$btn = $(e.delegateTarget);
if( !schedules.length || currentDoctor.id != $btn.data('guid') ){
currentDoctor = doctors[$btn.data('index')];
inProgress = true;
$.ajax({
type: 'GET',
dataType: 'JSON',
url: '/booking.php?action=getSchedule&guid=' + $btn.data('guid') + '&spec=' + currentSpecialist['id'] + '&z=1',
error: function(){
$modalReason.removeClass('hidden').text('error getSchedule');
},
success: function(response){
if(response && response.status){
schedules = response.items;
currentView = 'list-schedules';
} else {
if(!response){
$modalReason.removeClass('hidden').text('error getSchedule response');
} else if(!response.status){
$modalReason.removeClass('hidden').text(response.reason);
}
}
},
complete: function(){
inProgress = false;
}
});
} else {
currentView = 'list-schedules';
}
renderView();
}
он срабатывает при нажатие на кнопку, а как сделать так, что бы срабатывал при загрузке страницы?
Спасибо.