I'm using the following script to load some articles into a div, these articles contain images. is it possible to only show the image once it has fully downloaded rather than rendering it bit by bit?
<script>
$("#getnews").click(function(){
$("#nhsnews").load("news_feed.php");
});
</script>