Skip to content

Instantly share code, notes, and snippets.

@douglas-johnson
Created March 30, 2017 14:38
Show Gist options
  • Save douglas-johnson/e7506688f933958843225e763b04d05a to your computer and use it in GitHub Desktop.
Save douglas-johnson/e7506688f933958843225e763b04d05a to your computer and use it in GitHub Desktop.

Bad

<figure class="op-tracker">
	<iframe>
		<script>
			var x = new Image();
			x.src = "https://pixel.wp.com/b.gif?host=thoughtcatalog.com&amp;blog=7369149&amp;post=725360&amp;subd=thoughtcatalog&amp;ref=&amp;feed=1&rand=" +Math.random();
		</script>
	</iframe>
</figure>

Good

<figure class="op-tracker">
	<iframe>
		<script>
			var x = new Image();
			x.src = "https://pixel.wp.com/b.gif?v=ext&host=thoughtcatalog.com&blog=7369149&post=729294&subd=thoughtcatalog&ref=facebook.com&rand=" +Math.random();
		</script>
	</iframe>
</figure>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment