View on GitHub

dom-helpers

Helper functions for faster DOM scripting

GitHub release GitHub issues GitHub last commit Build Status npm npm Analytics

DOM Helpers

Helper functions for faster DOM scripting

Install

yarn add @three11/dom-helpers

or

npm i @three11/dom-helpers

Usage

import {
	$,
	$$,
	hasClass,
	addClass,
	removeClass,
	toggleClass,
	insertAfter,
	insertBefore,
	dispatchEvent,
	enableListeners,
	getScrollPosition,
	isElementVisibleInViewport
} from '@three11/dom-helpers';

or

Import each function separately.

See functions list below:

Functions

$ - queries the DOM and obtains a single element

const button = $('#button');

$$ - queries the DOM and obtains a collection of elements

const buttons = $$('#button');

enableListeners - enables the custom on method for attaching of event listeners

enableListeners();

button.on('click', () => {
	console.log('clicked a single button');
});

buttons.on('click', () => {
	console.log('clicked a button in a collection');
});

isElementVisibleInViewport - accepts two arguments: DOM element and a boolean flag which states if the element should be partially visible. Returns boolean.

const element = document.getElementById('element');
const isVisible = isElementVisibleInViewport(element, true);

const element = document.getElementById('element');
const scrollPosition = getScrollPosition(element);

const element = document.getElementById('element');

hasClass(element, 'test'); // false
addClass(element, 'test');
removeClass(element, 'test');

/**
 * The last argument forces the classname.
 * If true the classname will be added,
 * if false it will be removed.
 * If omitted, the classname will be toggled
 */
toggleClass(element, 'test', true);

const element = document.getElementById('element');

insertAfter(element, '<div>Test</div>');
insertBefore(element, '<div>Test</div>');

const element = document.getElementById('element');

// The third argument is event data. Can be omitted
dispatchEvent(element, 'click', { data: true });

License

GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007