JSFiddle - React, Tailwind, and code Playground
HTML
<div id="player">
<div id= "playerTableDown"></div>
<div id = "playerTableUp"></div>
<div id= "playerHand">
<img src="http://upload.wikimedia.org/wikipedia/commons/thumb/3/3d/KosmicFrenchmenPurpleFaceMardiGras2009.JPG/225px-KosmicFrenchmenPurpleFaceMardiGras2009.JPG" class="heh" height="100" width="69">
</div>
</div>
CSS
#playerHand {
width:500px;
height:400px;
border: solid 1px black;
}
.heh{
position:absolute;
z-index: 2000;
top:100px;
}
JavaScript
$(function() {
$('#playerHand').click(function(e){
//$(this).removeClass('cardsHand');
//$(this).addClass('clickedCard');
$('img.heh').css
({
'top': (e.pageY - 20),
'left': (e.pageX - 20)
});
});
});