Are you asking which 'p' element triggered the event? If so, you can access
it using 'this' reserved word:
$("p").click(function(){
$(this).css({backgroundColor:"red"}); // "this" refers to clicked p
element
});
- jake
On 3/9/07, Abel Tamayo <[EMAIL PROTECTED]> wrote:
Hi all. I'd like to know if there's a standard, easy way to determine with
element triggered an event. I'm pretty sure there is, but can't find it in
google. Maybe an atribute in the e parameter received by the function like:
$("p").bind(
"click",
function(e){
console.log(e.TRIGGER); // This trigger attribute of the element e is
the one that started the action.
}
);
So, is there an easy way?
Thanks.
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/
_______________________________________________
jQuery mailing list
[email protected]
http://jquery.com/discuss/