1.0.1 • Published 4 years ago

if-element-exists v1.0.1

Weekly downloads
158
License
ISC
Repository
github
Last release
4 years ago

if-element-exists

Execute a function only if the DOM element exists.

Install

npm install if-element-exists

Usage

import ifElementExists from 'if-element-exists';

ifElementExists('.foo', x => x.classList.add('bar'));

API

ifElementExists(elementOrSelector, func)

Calls func if and only if the element is not null. the Returns the result of func.

elementOrSelector

Type: HTMLElement | string

DOM element, or query selector to get an element

func

Type: function

Receives the element as the first argument, if the element is not null. Return value of the function will be returned from ifElementExists.