JSFiddle - React, Tailwind, and code Playground

by Alvin Olavarrieta

HTML

<label><input type="radio" value="1" name="rdQueen" /> Scaramouche</label> <br />
<label><input type="radio" value="1" name="rdQueen" /> Will you do the</label> <br />
<label><input type="radio" value="1" name="rdQueen" /> Fandango</label> <br /><br />

<label><input type="radio" value="1" name="rdFruit" /> Mango</label> <br />
<label><input type="radio" value="1" name="rdFruit" /> Kiwi</label> <br />
<label><input type="radio" value="1" name="rdFruit" /> Potato</label> <br />

<button id="test">Run test</button>

JavaScript

$('#test').click(function(){
    if($(':radio[name=rdQueen]:checked, :radio[name=rdFruit]:checked').length == 2)
        alert('good to go');
    else
        alert('please choose one from each group');
});