I answered this question with this jQuery code:
$('input[type="checkbox"][name$="chkSelect"]').click(function() {
$('input[type="checkbox"][name$="chkSelect"]').not(this).prop("checked", false);
});
... and it got me thinking: there must be a way to avoid duplicating the selector in the event handler.
I tried $(this).selector
but that just returns an empty string. Here's a demo.
Is there a way to get the selector text in the event handler?