- $('#wrapper').on('click', '.myclass', function() {
- console.log('Inside');
- var target = $(this).find('#wrapper .myclass');
- console.log('TargetThis: ' , target);
- });
How do you target the class element that was just clicked. Currently it just gives me undefined.