Skip to content

Instantly share code, notes, and snippets.

@lifeinafolder
Created October 20, 2010 21:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lifeinafolder/637336 to your computer and use it in GitHub Desktop.
Save lifeinafolder/637336 to your computer and use it in GitHub Desktop.
Image Beacon
var img = new Image();
var data = 'name="John"';
img.onload = function(){
console.log('data successfully sent');
}
img.src = 'YOUR SCRIPT URL HERE' + '?' + data;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment