I bound the blur function to a text box having class name 'qtyToPick'. Now I want to call the same blur function if I change checked property of a check box having class 'chkSelect'.
How can i do it ?
$('.qtyToPick').live('blur', function() {
// Code here
});