document.addEventListener("DOMContentLoaded", function() { var images = document.querySelectorAll('img'); images.forEach(function(img) { img.onerror = function() { img.style.display = 'none'; // Ẩn hình ảnh bị lỗi }; }); });