We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 7f1712b + 0e81745 commit 55939c8Copy full SHA for 55939c8
index.html
@@ -23,10 +23,10 @@ <h2>Diff checker</h2>
23
</div>
24
25
<div id="buttons">
26
- <button>Hide Original</button>
27
- <button>Hide Compare</button>
+ <button id="button-original">Hide Original</button>
+ <button id="button-compare">Hide Compare</button>
28
29
30
- </div>
+ <script src="script.js"></script>
31
</body>
32
</html>
script.js
@@ -0,0 +1,3 @@
1
+
2
+const compare = document.getElementById("#div-compare");
3
+const original = document.getElementById("#div-original");
0 commit comments