I have a checkbox on a page that is disabled until some criteria is met.
In an effort to give the user some information, I\'d like to have a \'tool tip\' display whe
$('.mycontainer').delegate(':checkbox:disabled', 'click', function(e) { //do stuff });