Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
<script>
$(document).ready( function() {
	let featuredImg = $('.content-header .media-container img').attr('src');
	$('article img').first().each(function(){
		if ($(this).attr('src') == featuredImg) {
			$(this).remove();
		}
	});
});
</script>