So I have a jQuery function:
$("#el01").myFunc();
$("#el02").myFunc();
$("#el03").myFunc();
Is there simple way to find out which elements in the DOM have been bound to that function, without having to manually store references in an object or array?