How do I loop through a radio buttons group without a form in JavaScript or jQuery?
I can't be too sure what you mean but if you want to do something to all radio buttons on a page you can do this:
$("input:radio").each(function(){ //do something here });