blewisio / if-element-exists

execute a function iff the element exists

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

execute a function iff the element exists


Languages

Language:JavaScript 100.0%