Return to Snippet

Revision: 21282
at December 8, 2009 18:11 by anobre


Initial Code
var add_pixel = function(p) {
				var ord = Math.random().toString();
				if((p.charAt(p.length-1) === "=") || (p.charAt(p.length-1) === "?")){
					p += ord;
				}

				img = new Image(1,1)
				img.src = p; 
				img.style.display="none";
				return img;
			};

Initial URL


Initial Description
use:
add_pixel("tag")

Initial Title
add tracking pixel function

Initial Tags


Initial Language
JavaScript