JSFiddle - React, Tailwind, and code Playground
by jeffgw
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/jQuery-Knob/1.2.13/jquery.knob.min.js"></script>
<div style="padding:20px;">
<input type="text" value="75" class="dial">
<input type="text" value="25" class="dial">
<input type="text" value="45" class="dial">
<input type="text" value="15" class="dial">
</div>
JavaScript
$(function() {
$(".dial").knob();
});