JSFiddle - React, Tailwind, and code Playground
HTML
<button id="RefreshPage">Refresh this page using java script</button>
JavaScript
$('#RefreshPage').click(function() {
window.location.reload();
});
<button id="RefreshPage">Refresh this page using java script</button>
$('#RefreshPage').click(function() {
window.location.reload();
});