JSFiddle - React, Tailwind, and code Playground

by fezec

HTML

<a href="#bob">bob</a>
<a href="#nancy">nancy</a>

<div id="bob">
</div>


<div id="nancy">
</div>

CSS

div{
    height:500px;
    background-color:green;
}

#nancy{
    background-color:yellow;
}

JavaScript

function load() {
	alert("a");
    var urllocation = location.href;
    alert(urllocation)
	if(urllocation.indexOf("#nancy") > -1){
		window.location.hash="nancy"; 
	} else {
	return false;
	}
}


$(load())