JSFiddle - React, Tailwind, and code Playground

by jairajdesai

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
<form name="form1" id="form_1" method="post">

  Enter your name:
  <input type="text" name="nameInput"> Enter your street address:
  <input type="text" name="streetInput"> Enter your city/state:
  <input type="text" name="cityStateInput">

  <input type="button" name="upperCaseButton" value="Convert to Uppercase" id="button">

</form>

JavaScript

$(document).ready(function() {
  $('#button').click(function() {
    $('form1 input[type="text"]').each(function() {
      console.log($(this).val());
      $(this).val($(this).val().toUpperCase());
    });
  });
});