Created
August 7, 2014 12:54
-
-
Save michiel/4370c831e85f383fec4c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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