19 lines
404 B
HTML
19 lines
404 B
HTML
<html>
|
|
<head>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<div id="textid">
|
|
|
|
</div>
|
|
|
|
<script>
|
|
var urlParams = new URLSearchParams(window.location.search);
|
|
var customdata = urlParams.get('custom') || 'default';
|
|
|
|
var divElement = document.getElementById('textid');
|
|
divElement.innerText = customdata;
|
|
</script>
|
|
</body>
|
|
</html> |