Dans le code suivant, comment puis-je effectuer un test, et savoir quel élément a été cliqué ?
$("li,p").click(function(){
// how do I perform a test, and know which Element it is?
if( /* I'm a <li/> */ )
// Do this for the <li/>
if( /* I'm a <p/> */ )
// Do this for the <p/>
})