JSFiddle - React, Tailwind, and code Playground

by Nikhil Agrawal

HTML

<button id="RefreshPage">Refresh this page using java script</button>

JavaScript

$('#RefreshPage').click(function() { 
    	      window.location.reload();
 });