// Get all sections, columns, and widgets in Elementor
const elements = document.querySelectorAll('.elementor-section, .elementor-column, .elementor-widget-wrap');
// Loop through each element and add a class
elements.forEach(element => {
element.classList.add('custom-cursor');
});
// Add a style to the head of the document
const style = document.createElement('style');
style.innerHTML = `
.custom-cursor {
cursor: url('https://ktdigital.vn/wp-content/uploads/2025/09/logo-DK-co-chu-R-transparent.png'), auto;
}
`;
document.head.appendChild(style);