JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<form>
<input type="text" value="Mateus" name="nome" id="nome">
</form>
JavaScript
jQuery(document).ready(function(){
console.log(jQuery('form').serialize());
});