2.1.5 • Published 3 years ago

better-el-ref v2.1.5

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

better-el-ref

A better way to reference HTML elements in JavaScript.

CircleCI npm npm npm bundle size NPM npm type definitions Dependents (via libraries.io)

Reasoning

Consistently calling document.getElementById('id') is long and tedious and adds unnecessary length to code. Not to mention, the usage of document.querySelector('el') is notoriously slow and so by using the better-el-ref package, referencing HTML elements is easy and optimized. better-el-ref also provides a nice way to handle elements that do not exist or are empty which keeps code DRY, especially when using TypeScript.

Usage/Examples

<!-- Generic -->
<div id="element"></div>

<div class="element"></div>

<element></element>

<input name="element" />

<!-- Chaining -->
<div id="element-1">
  <p class="element-1"></p>
</div>

<input name="element-1">
  <elementT></elementT>
</input>

<div id="test">
  <test>
    <div id="test-1">
      <div id="test-2">
        <div id="test-3">
          <div id="test-4">
            <p class="test-class"></p>
          </div>
        </div>
      </div>
    </div>
  </test>
</div>
import getElement from 'better-el-ref'

getElement(element, name?)

/* Generic */
getElement('#element') // ID
getElement('.element') // Class
getElement('<element') // Tag
getElement('$element') // Name

/* Chaining */
getElement('#element-1 .element-1') // Nested class
getElement('$element-1 <elementT') // Nested tag
getElement('#test <test #test-1 #test-2 #test-3 #test-4 .test-class') // Nested class

/* Applying operations */
getElement('.test').innerHTML(`<img src="test" />`, 'a') // Append an `img` element to all elements with class of "test"
2.1.5

3 years ago

1.1.0

3 years ago

1.0.9

3 years ago

1.0.8

3 years ago

1.0.7

3 years ago

1.6.0

3 years ago

2.1.2

3 years ago

2.0.3

3 years ago

2.1.1

3 years ago

2.0.2

3 years ago

2.1.4

3 years ago

2.0.5

3 years ago

2.1.3

3 years ago

1.0.6

3 years ago

1.0.5

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago