whitphx's picture
whitphx HF staff
Update
dde26cd
raw
history blame
717 Bytes
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<title>Static Space URL sync example</title>
</head>
<body>
<label for="">
Query string
<input type="text" id="query">
</label>
<label>
Hash
<input type="text" id="hash">
</label>
<button onclick="sync()">Sync</button>
<script>
function sync() {
const queryString = document.getElementById("query").value;
const hash = document.getElementById("hash").value;
// HF Spaces' spacial message type to update the query string and the hash in the parent page URL
window.parent.postMessage({
queryString,
hash,
})
}
</script>
</body>
</html>