2017-05-11 20:32:42 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
|
|
<script type="text/javascript">
|
|
|
|
function show() {
|
|
|
|
var results = /\?topic=(.+)$/.exec(window.document.location);
|
2017-10-15 21:50:30 +03:00
|
|
|
var topic = decodeURIComponent(results[1].replace(/\+/g, " "));
|
2017-05-11 20:32:42 +03:00
|
|
|
var node = document.getElementById("topic");
|
|
|
|
|
|
|
|
node.textContent = topic;
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body onload="show()">
|
|
|
|
<div id="topic"></div>
|
|
|
|
</body>
|
|
|
|
</html>
|