JSFiddle - React, Tailwind, and code Playground

by TheFiddler

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js"></script>


<input type="radio" name="questionType" value="closed" /> Closed Endeded<br />
<input type="radio" name="questionType" value="matrix" /> Matrix Question<br />
<input type="radio" name="questionType" value="open" /> Open Ended

CSS

.questionBlock { font-size: x-large; color: red }

JavaScript

$(document).ready(function() { 

$("input[name='questionType']").change(function(){
    
    var selected = $("input:radio:checked").val();
    alert(selected);
})
});