5
votes
Underused Features of HTML
The word "element" is underused, even the HTML 4.01 specification states this:
Element …
1
vote
What are the main differences between XHTML and HTML?
Summary: use HTML.
There are many differences, and many smart people (that know what they are talking about :D) …
4
votes
What are the different doctypes in html and what do they mean?
Browsers don't care what doctype you use (well, almost true), they use it for one thing and one thing only: to decide whic …
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 determine which html page element has focus?
Maybe document.activeElement, don't know about browser support tho. Seems to work in Firefox and …
