Update index.html
Browse files- index.html +6 -5
index.html
CHANGED
@@ -12,11 +12,12 @@
|
|
12 |
<script>
|
13 |
const queryString = window.location.search;
|
14 |
const urlParams = new URLSearchParams(queryString);
|
15 |
-
const
|
16 |
-
|
17 |
-
const
|
18 |
-
|
19 |
-
|
|
|
20 |
</script>
|
21 |
</body>
|
22 |
</html>
|
|
|
12 |
<script>
|
13 |
const queryString = window.location.search;
|
14 |
const urlParams = new URLSearchParams(queryString);
|
15 |
+
const links = urlParams.get("links")
|
16 |
+
|
17 |
+
for (const prop in links) {
|
18 |
+
console.log(prop);
|
19 |
+
}
|
20 |
+
document.getElementById("in_html").innerHTML=links
|
21 |
</script>
|
22 |
</body>
|
23 |
</html>
|