Is it possible to remove src attribute for each img tag before image is fetched ?
I want to change image fetching behavior.
What I did:
$('img').each(function() {
var elem = $(this);
elem.removeAttr('src');
// ... my custom actions
});
What happened:
Image is fetched, before src attribute is removed :/
Thanks