Posts
amar
document.addEventListener("DOMContentLoaded", function () {
function toHex(str) {
return Array.from(str)
.map(c => c.charCodeAt(0).toString(16).padStart(2, '0'))
.join('');
}
window.handleDownload = function(button) {
const downloadLink = button.getAttribute('data-link');
if (!downloadLink) return;
const hexLink = toHex(downloadLink);
button.innerHTML = ' Đang chuyển hướng...';
button.style.pointerEvents = 'none';
const redirectURL = 'https://desgin.trummanguon.com/p/chuyen-huong-lien-ket.html?url=' + hexLink;
setTimeout(() => {
window.location.href = redirectURL;
}, 1000);
};
});