Code lưu tạm thời

PHOTO EMBED

Tue May 28 2024 15:37:54 GMT+0000 (Coordinated Universal Time)

Saved by @khoa11211

// Lưu dữ liệu đã chỉnh sửa vào localStorage
function saveAdData(selector) {
    const element = document.querySelector(selector);
    if (element) {
        const content = element.innerHTML;
        localStorage.setItem('adContent', content);
        alert('Đã lưu dữ liệu chỉnh sửa thành công!');
    } else {
        alert('Không tìm thấy phần tử để lưu dữ liệu.');
content_copyCOPY