Files
Kingsborough-LibGuide/groups/home/bootstrap5/az/js.html
T
2024-01-03 10:33:15 -05:00

7 lines
208 B
HTML

<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>