I want to create a simple bit of JS code that creates an image element in the background and doesn\'t display anything. The image element will call a tracking URL (such as
var img = document.createElement('img'); img.src = 'my_image.jpg'; document.getElementById('container').appendChild(img);