JSFiddle - React, Tailwind, and code Playground

by OsamaMohamed

HTML

<a href="page1.html">Page 1</a><br><br>
<a href="page2.html">Page 2</a><br><br>
<a href="page3.html">Page 3</a><br><br>
<a href="page4.html">Page 4</a><br><br>
<a href="page5.html">Page 5</a><br><br>

JavaScript

$(document).ready(function(){
	$("a").click(function(e){
        e.preventDefault();
    	window.location = this.href;
    });
});