JSFiddle - React, Tailwind, and code Playground

by jakie8

HTML

<script src="https://raw.github.com/jrsinclair/jquery-dependent-questions/master/jquery.dependent-questions.js"></script>
<form action="?" id="myform">
  <fieldset class="form-question">
    <legend>Would you like to see another question?</legend>
    <span>
      <input type="radio" name="more" value="no" id="more-no"/>
      <label for="more-no">No</label>
    </span>
    <span>
      <input type="radio" name="more" value="yes" id="more-yes"/>
      <label for="more-yes">Yes</label>
    </span>
  <fieldset>
  <div class="form-question" data-depends-on="more=yes">
    <label for="extra">What else would you like to add?</label>
    <input type="text" name="extra" id="extra"/>
  </div>
</form>

JavaScript

$('#myform').dependentQuestions();