I set Lazyload script with jQuery with this code in my footer
<script>
$(document).ready(function(){
$("img.lazy").lazyload({
threshold : 10,
effect : "fadeIn",
});
});
</script>
And this is my HTML part of lazyload
<a href="https://www.example.com" target="_blank" width="100%" height="100%">
<img class="lazy" src="//example.jpg" data-original="//example.jpg" referrerpolicy="no-referrer">
</a>
If I test without lazyload, refererpolicy works fine, but If I set with lazyload it seems that referrerpolicy attribute is not working. Is there any ways to set lazyload and refererpolicy together?