I am using jQuery.
I have a list of radio buttons which I am getting this way:
var $selectAllRadios = $('input:radio[value=select]');
Now in this list I want to be able to select all the radio buttons which are currently checked and also the number of radio buttons that are currently checked.
How can I achieve this?