i've been searching that why we use $(this) in jQuery . so i thought to ask it on stackOverFlow , i'm new to jQuery and i'm very curious to know about $this.
<h1>Example Header</h1>
<script>
$('h1').on('click',function(){
$(this).hide(); //???
});
</script>