JSFiddle - React, Tailwind, and code Playground

by Intesar Haider

HTML

<div id="myRadioGroup">
    
    <input type="radio" name="cars" checked="checked" value="2"  />1 Cars
    <input type="radio" name="cars" value="3" />2 Cars
    
    <div id="Cars2" class="desc">
        1 Cars Selected
    </div>
    <div id="Cars3" class="desc" style="display: none;">
        2 Cars
    </div>
</div>

JavaScript

$(document).ready(function() {
    $("input[name$='cars']").click(function() {
        var test = $(this).val();

        $("div.desc").hide();
        $("#Cars" + test).show();
    });
});