JSFiddle - React, Tailwind, and code Playground
HTML
<input value="Submit and New" type="button" />
JavaScript
$(document).ready(function(){
$('input[value="Submit and New"]').on('click', function(){
alert('The request form has been submitted successfully. To submit a new form for the same user, change the form values and click on either the "Submit" or "Submit and New" button');
});
})