Skip to content

Latest commit

 

History

History
15 lines (9 loc) · 352 Bytes

README.markdown

File metadata and controls

15 lines (9 loc) · 352 Bytes

Eavesdrop on jQuery (works like Ruby's Object#tap).

Example:

Want to know what elements this affects?

$('.foo').add('.bar').hide();

Tap into it!:

$('.foo').add('.bar').tap(function() {
    console.log(this);
}).hide();