1
vote
Identifying list item index - which is a better approach?
Maybe something similar to:
var lis = document.getElementById("list").getElementsByTagName("li");
for (var i = 0, li; li = lis[i]; ++i) {
li.addEventListener("click", (function(p …
1
vote
How to turn a very long column into multiple shorter ones?
Ignoring:
Also be sure to keep related items in the same column (ie. if dt 7 is col x, so should dd 7).
one possible solution could be …
