If I have:

$("div").click(function(){

     //How do I do the following
     $(this + " > p").show();

});

I want to select the child p of the div I clicked, and I know there's
proper syntax to it, but I am completely brainfarting on it.

Thanks!
Matt

Reply via email to