Create js.html

This commit is contained in:
Mark Eaton
2024-01-03 10:33:15 -05:00
committed by GitHub
parent 1b1aba144b
commit defd395c08
+6
View File
@@ -0,0 +1,6 @@
<script>
// to add a bootstrap width class to the text input on the nav
let myItem = document.getElementById("col-search")
let child = myItem.firstElementChild;
child.setAttribute("class", "w-100")
</script>