When I clone an image, does the browser redownload the image? Chrome console says loaded from cache, but
When I look it on mobile browser (ios) there is a quite delay?
$('#a').on('click', function() {
$(this).clone().appendTo('body');
})
#a {
width: 200px;
height: auto;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<img id="a" src="https://www.pcspecialist.co.uk/images/misc/right-pc.png" alt="">