Based on this question
I don\'t want to litter my ready stuff waiting for a \"click event\" AND a \"change event\" AND a \"mouseover event\" I want to have all that
I think you are looking for bind. Bind can wire multiple events to the same function using a single call instead of using a chain:
$("textarea.checkMax").bind("keyup mouseover", checkMaxLength);