If I click on one or two I'll get the object of whole ul tag, but from this object I want to get access to the li tag objects and I am not able to get how
function on(a){
console.log(a);
}
<ul onclick=on(this)>
<li>one</li>
<li>two</li>
</ul>
please help me out...Thanks in advance