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