js comment avoir un onclick à l'intérieur d'un autre onclick

<p onClick={(e)=>{
	if (!e) e = window.event;
    e.cancelBubble = true;
    if (e.stopPropagation) e.stopPropagation();
}}>example</p>
Clumsy Crossbill