|
|
|
var homeUrl = window.home_url; |
|
|
|
|
|
var buttonLinks = window.but_url; |
|
|
|
|
|
$(document).ready(function() { |
|
|
|
|
|
|
|
function loadContent(url) { |
|
$.get(url, function(response) { |
|
$('#contents').html(response); |
|
bindButtonHandlers(); |
|
}).fail(function(xhr, status, error) { |
|
console.error('Ошибка загрузки контента:', error); |
|
}); |
|
} |
|
|
|
|
|
function bindButtonHandlers() { |
|
buttonLinks.forEach(function(button) { |
|
$('#' + button.id).on('click', function(event) { |
|
event.preventDefault(); |
|
loadContent(button.link); |
|
}); |
|
}); |
|
} |
|
|
|
|
|
bindButtonHandlers(); |
|
|
|
|
|
loadContent(homeUrl); |
|
}); |