Get the label of click check box
- by CliffC
hi
i have a page which generate check boxes dynamically and i have
the following event which fires every time a user click on any of the check boxes
$(':checkbox').click(function() {
});
My question is how can i get the text of the check box that has been trigger by the user?
Thank you