JSFiddle - React, Tailwind, and code Playground

by 3nigma

HTML

<input type="radio" value="asd" name="a"/>
<input type="radio" value="asd" name="a"/><br/>
<input type="radio" value="asd" name="b"/>
<input type="radio" value="asd" name="b"/><br/>

<input type="button" value="press"/>

JavaScript

$("input:button").click(function(){
var v =$('input[name="a"]').filter(':checked');
var vr =$('input[name="b"]').filter(':checked');
if(v.length==0)
{
alert("select a group");
   
}else alert("very good");
    
    
if(vr.length==0)
{
alert(" o come on ");
   
}else alert("guud");
    
});