| Path : /home/vishqocm/public_html/ |
| Current File : //home/vishqocm//public_html/optimize.js |
// Lazy load images
document.addEventListener('DOMContentLoaded', function() {
const images = document.querySelectorAll('img:not([loading])');
images.forEach(img => {
img.loading = 'lazy';
});
});