lmnt

A non-invasive polyfill for the W3C Element Traversal Specification.


Keywords
js, polyfill, DOM, element, traversal, front-end, web
License
MIT
Install
bower install lmnt

Documentation

LMNT: an Element Traversal Polyfill

This project exists to supply the missing functionality specified by the W3C's Element Traversal Specification. It adds 5 read-only properties to the Element prototype, if they are not natively present in the execution environment:

  • firstElementChild
  • lastElementChild
  • previousElementSibling
  • nextElementSibling
  • childElementCount

These properties directly correspond to interfaces defined by the DOM Level 1 Node interface, with the additional constraint that they operate only nodeType 1 (i.e. Element nodes), ignoring Text, Comment, and other nodeTypes. Nine times out of ten, this is what Web developers want to do anyway, so using these will simplify your code.

The polyfill also adds the children property to the Element prototype, which isn't officially part of the Element Traversal specification, but is implemented in most modern browsers, and adds a conceptual gap left out of the spec: an Element-only version of childNodes.

Currently lmnt.js provides its functionality as functions in a window-level namespace (lmnt), but doesn't touch the Element prototype directly, due to the inaccessibility of Element.prototype in the browsers we care the most about polyfilling: Internet Explorer versions 6 and 7. The best way, then, to write code that leans on the polyfill is:

// alternative 1:
var myFirstChild = parentNode.firstElementChild || lmnt.firstElementChild(parentNode);

// or, simpler (lmnt calls the native property if it's available):
var myFirstChild = lmnt.firstElementChild(parentNode);

Minified version coutesy of the awesome UglifyJS.

At some point I may also provide an alternative script with a true polyfill, if I can figure out how to get IE 6 & 7 to play ball. Or not, I haven't made up my mind yet.

Credits

Thanks to: