Skip to content
// Mã JavaScript/jQuery đã tùy chỉnh:
jQuery(document).ready(function($) {
$('button primary #btn-dat-ban').on('click', function(e) {
e.preventDefault();
// **Quan trọng:** Đảm bảo ID mục tiêu là '#form-dat-ban'
var targetSection = $('bg section-bg fill bg-fill bg-loaded');
if (targetSection.length) {
$('html, body').animate({
scrollTop: targetSection.offset().top - 80
}, 800);
}
});
});