I have asp.net checkboxlist control that bounded to a data source so the number of items in the control are different from one to to another time.
I have this function:
$('#<%=chkListGroups.ClientID %> input:checkbox:checked').siblings('label').text();
this function will return all texts for all selected items in the control as a one string.
I'm looking for a way that when I check a check box from the ckeckboxlist control will return only last checked checkbox.
this code :
$('#<%=chkListGroups.ClientID %> input:checkbox:checked').last().siblings('label').text();
returns last checked item for example if I checked second will return
second item then when I checked fifth item will return fifth item but
if now when I check third item will return fifth item so it is always
returning last item checked in the list and I'm looking to
Please advice me how to do this using jquery.
View Complete Post