I have a javascript function
<script>
$(document).ready(function(){
$('.paper_img').click(function(){
console.log("hello")
return false;
});
});
</script>
how can I access the element which triggered this function? thanks carl