JSFiddle - React, Tailwind, and code Playground

by Kleber Mota

HTML

<form method="post" class="form">
    <input type="text" name="teste1">
    </input>
    <br/>
    
    <input type="text" name="teste2">
    </input>
    <br/>
    
    <input type="text" name="teste3">
    </input>
    <br/>
    
    <div id="popup" class="dialog">
        <hr>
        <form method="post" class="form">
            <input type="test" name="teste4">
            </input> <br/>
            
            <input type="submit" value="submit1">
            </input>
        </form>
        <hr>
    </div>
    
    <input type="submit" value="submit">
    </input>
</form>

<div id="result">
</div>

JavaScript

$('form.form').on('submit', function(event, data) {
    event.preventDefault();
    /*$(this).each(function() {
        this.reset();
    });*/
    $('form.form')[0].reset();
});