npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

dom-helpers-fix20

v3.2.4

Published

tiny modular DOM lib for ie8+

Downloads

16

Readme

dom-helpers

tiny modular DOM lib for ie8+

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 (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.

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

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 owner
    • ownerWindow(element): returns the element's document window
    • activeElement: return focused element safely
    • query
      • 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): matches() polyfill that works in ie8
      • offset(element) -> { top: Number, left: Number, top: height, 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)
    • class
      • addClass(element, className)
      • removeClass(element, className)
      • hasClass(element, className)
    • style(element, propName, [value]) or style(element, objectOfPropValues)
      • removeStyle(element, styleName)
      • getComputedStyle(element) -> getPropertyValue(name)
    • transition
      • animate(node, properties, duration, easing, callback) programmatically start css transitions
      • 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 provided
      • properties: Object containing the various vendor specific 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 ie8
      • off(node, eventName, handler, [capture]): capture is silently ignored in ie8
      • listen(node, eventName, handler, [capture]): wraps on and returns a function that calls off for you
      • filter(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 canceling
        • requestAnimationFrame.cancel(id)
      • scrollTo(element, [scrollParent])