I have an html like this
<div class='click' id='1'>
one
<div class='click' id='2'>
    two
    <div class='click' id='3'>
        three
        <div class='click' id='4'>
            four
            <div class='click' id='5'>
                five
            </div>
        </div>
    </div>
</div>
if i have and click event on class click ,there is any way to return the id of which i click such as $('.click').click(function(){ alert('id whitch i click')
}); Becase if i click on three i allway get the id of one and two three.
 
     
     
     
     
    