1
0
Fork 0
react-playground/node_modules/dom-helpers
2025-08-25 17:46:11 +02:00
..
activeElement worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
addClass worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
addEventListener worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
animate worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
animationFrame worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
attribute worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
camelize worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
camelizeStyle worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
canUseDOM worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
childElements worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
childNodes worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
cjs worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
clear worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
closest worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
collectElements worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
collectSiblings worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
contains worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
css worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
esm worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
filterEventHandler worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
getComputedStyle worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
getScrollAccessor worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
hasClass worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
height worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
hyphenate worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
hyphenateStyle worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
insertAfter worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
isDocument worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
isInput worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
isTransform worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
isVisible worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
isWindow worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
listen worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
matches worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
nextUntil worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
offset worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
offsetParent worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
ownerDocument worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
ownerWindow worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
parents worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
position worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
prepend worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
querySelectorAll worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
remove worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
removeClass worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
removeEventListener worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
scrollbarSize worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
scrollLeft worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
scrollParent worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
scrollTo worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
scrollTop worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
siblings worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
text worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
toggleClass worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
transitionEnd worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
triggerEvent worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
width worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
LICENSE worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
package.json worked on GarageApp stuff 2025-08-25 17:46:11 +02:00
README.md worked on GarageApp stuff 2025-08-25 17:46:11 +02:00

dom-helpers

tiny modular DOM lib for ie9+

Install

npm i -S dom-helpers

Mostly just naive wrappers around common DOM API inconsistencies, 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 eliminate the need to write the same damn if (ie9) statements in every project.

For example on() works in all browsers ie9+ 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.

dom-helpers does expect certain, polyfillable, es5 features to be present for which you can use es5-shim where needed

The real advantage to this collection is that any method can be required individually, meaning bundlers like 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.

All methods are exported as a flat namesapce

var helpers = require('dom-helpers')
var offset = require('dom-helpers/offset')

// style is a function
require('dom-helpers/css')(node, { width: '40px' })
  • dom-helpers
    • ownerDocument(element): returns the element's document owner
    • ownerWindow(element): returns the element's document window
    • activeElement: return focused element safely
    • querySelectorAll(element, selector): optimized qsa, uses getElementBy{Id|TagName|ClassName} if it can.
    • contains(container, element)
    • height(element, useClientHeight)
    • width(element, useClientWidth)
    • matches(element, selector)
    • offset(element) -> { top: Number, left: Number, height: Number, width: Number}
    • offsetParent(element): return the parent node that the element is offset from
    • position(element, [offsetParent]: return "offset" of the node to its offsetParent, optionally you can specify the offset parent if different than the "real" one
    • scrollTop(element, [value])
    • scrollLeft(element, [value])
    • scrollParent(element)
    • addClass(element, className)
    • removeClass(element, className)
    • hasClass(element, className)
    • toggleClass(element, className)
    • style(element, propName) or style(element, objectOfPropValues)
    • getComputedStyle(element) -> getPropertyValue(name)
    • animate(node, properties, duration, easing, callback) programmatically start css transitions
    • transitionEnd(node, handler, [duration], [padding]) 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 provided
    • addEventListener(node, eventName, handler, [options]):
    • removeEventListener(node, eventName, handler, [options]):
    • listen(node, eventName, handler, [options]): wraps addEventlistener and returns a function that calls removeEventListener for you
    • filter(selector, fn): returns a function handler that only fires when the target matches or is contained in the selector ex: on(list, 'click', filter('li > a', handler))
    • requestAnimationFrame(cb) returns an ID for canceling
    • cancelAnimationFrame(id)
    • scrollbarSize([recalc]) returns the scrollbar's width size in pixels
    • scrollTo(element, [scrollParent])