Delete Hash
<html><head>
<style>
body {
    margin: 0;
}
a {
    background-color: rgba(0,0,0,.3);
    cursor: pointer;
    display: block;
    height: 100%;
    width: 100%;
}
</style>
 
</head>
<body>
<a onclick="del()"></a>
<script>
function del() {
    parent.history.replaceState(null, '', location.pathname + location.search);
}
</script>
</body></html>
Unless otherwise stated, the content of this page is licensed under Creative Commons Attribution-ShareAlike 3.0 License