JSFiddle - React, Tailwind, and code Playground

by Yusril Maulidan Raji

HTML

<script src="https://code.jquery.com/jquery-1.7.2.min.js"></script>

<body>

<p>
Depending on browser support:<br>
A color picker can pop-up when you enter the input field.
</p>

<form action="action_page.php">
  Select your favorite color:
  <input type="color" id="test" name="favcolor" value="rgb(128,0,0)">
  <input type="submit">
</form>

<p><b>Note:</b> type="color" is not supported in Internet Explorer / Edge.</p>

</body>