tiny modular DOM lib for ie8+
npm i -S dom-helpers
Mostly just naive wrappers around common DOM API inconsitencies, Cross browser work is minimal and mostly taken from jQuery. This library doesn't do a lot to normalize behavior across browsers, it mostly seeks to provide a common interface, and elminate the need to write the same damn if (ie8)
statements in every project.
For example events.on
works in all browsers ie8+ but it uses the native event system so actual event oddities will continue to exist. If you need robust cross-browser support, use jQuery. If you are just tired of rewriting:
if (document.addEventListener)
return (node, eventName, handler, capture) =>
node.addEventListener(eventName, handler, capture || false);
else if (document.attachEvent)
return (node, eventName, handler) =>
node.attachEvent('on' + eventName, handler);
over and over again, or you need a ok getComputedStyle
polyfill but don't want to include all of jquery, use this.
The real advantage to this collection is that any method can be required individually, meaning tools like Browserify or Webpack will only include the exact methods you use. This is great for environments where jQuery doesn't make sense, such as React
where you only occasionally need to do direct DOM manipulation.
Each level of the module can be required as a whole or you can drill down for a specific method or section:
var helpers = require('dom-helpers')
var query = require('dom-helpers/query')
var offset = require('dom-helpers/query/offset')
// style is a function
require('dom-helpers/style')(node, { width: '40px' })
//and a namespace
var gcs = require('dom-helpers/style/getComputedStyle')
- dom-helpers
ownerDocument(element)
: returns the element's document ownerownerWindow(element)
: returns the element's document windowactiveElement
: return focused element safely- query
querySelectorAll(element, selector)
: optimized qsa, usesgetElementBy{Id|TagName|ClassName}
if it can.contains(container, element)
height(element, useClientHeight)
width(element, useClientWidth)
matches(element, selector)
:matches()
polyfill that works in ie8offset(element)
->{ top: Number, left: Number, top: height, width: Number}
offsetParent(element)
: return the parent node that the element is offset fromposition(element, [offsetParent]
: return "offset" of the node to its offsetParent, optionally you can specify the offset parent if different than the "real" onescrollTop(element, [value])
scrollLeft(element, [value])
scrollParent(element)
- class
addClass(element, className)
removeClass(element, className)
hasClass(element, className)
style(element, propName, [value])
orstyle(element, objectOfPropValues)
removeStyle(element, styleName)
getComputedStyle(element)
->getPropertyvalue(name)
- transition
end(node, handler, [duration])
listens for transition end, and ensures that the handler if called even if the transition fails to fire its end event. Will attempt to read duration from the element, otherwise one can be providedproperties
: Object containing the various vendor specifc transition and transform properties for your browser
{ transform: // transform property: 'transform' end: // transitionend property: // transition-property timing: // transition-timing delay: // transition-delay duration: // transition-duration }
- events
on(node, eventname, handler, [capture])
: capture is silently ignored in ie8off(node, eventname, handler, [capture])
: capture is silently ignored in ie8listen(node, eventname, handler, [capture])
: wrapson
and returns a function that callsoff
for youfilter(selector, fn)
: returns a function handler that only fires when the target matches or is contained in the selector ex:events.on(list, 'click', events.filter('li > a', handler))
- util
requestAnimationFrame(cb)
returns an ID for cancelingrequestAnimationFrame.cancel(id)
scrollTo(element, [scrollParent])