Fiddle: http://jsfiddle.net/ugzux/
As you can see, I have a form with a disabled (via javascript) submit button.
I want to be able to bind a click event to
$(document).on('click', '.wrapper-of-disabled-button', function(){ if ($(this).find('button.disabled').length > 0) { // Do your magic on the parent -> $(this) } });
Here you go ;)