lazysizes icon indicating copy to clipboard operation
lazysizes copied to clipboard

How to deal if internet connection failed

Open PiklioBezGashti opened this issue 2 years ago • 0 comments

How can i manage when user lost internet connection and keep scrolling ? i would like to keep original src file and not to be replaced i tried with code below but its keep senging it nonstop

document.addEventListener('error', function(e){ if(e.target.nodeName == 'IMG'){e.target.src = 'placeholder.jpg';} }, true);

PiklioBezGashti avatar Sep 09 '21 13:09 PiklioBezGashti