JSFiddle - React, Tailwind, and code Playground
by dsbonev
HTML
<h1>Test whether 'change' event is fired on 'Back' browser navigation</h1>
<ol>
<li>choose a file
<li>navigate to another page by clicking the link
<li>navigate back to the test page
</ol>
<input type="file" onchange="alert('change event listener executed')">
<a href="about:blank">Go to another page</a>
CSS
input, a {
display: block;
}