Skip to content

Instantly share code, notes, and snippets.

@michiel
Created August 7, 2014 12:54
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 michiel/4370c831e85f383fec4c to your computer and use it in GitHub Desktop.
Save michiel/4370c831e85f383fec4c to your computer and use it in GitHub Desktop.
var position = $(this).position();
var cssProps = {
top : position.top,
left : position.left,
opacity : '0.55'
};
$(this).click(function() {
$(this).clone().css(cssProps).appendTo(this);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment