Rihards
Rihards

Reputation: 10349

How to turn element into jQuery selector?

How to turn the event.currentTarget into jQuery object or something like that so I could then use jQuery's addClass method on the object? I know I could just do like: event.currentTarget.className += ' .class', but I was wondering how to work with the event target with jQuery.

$('.class').click(function(event) {
    Class.down($(this).parent().prev().attr('alt'));
    Class.style($(event.currentTarget));
});

Upvotes: 4

Views: 2617

Answers (1)

jessegavin
jessegavin

Reputation: 75650

$(event.currentTarget).addClass("classname");

Upvotes: 11

Related Questions