Skip to content

Latest commit

 

History

History
27 lines (23 loc) · 554 Bytes

README.md

File metadata and controls

27 lines (23 loc) · 554 Bytes

$ returns the first element in the DOM (document.querySelector)
$$ returns an array of elements from the DOM (document.querySelectorAll)

Installation

npm i qree --save
import {$, $$} from 'qree';

Or via CDN

<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/qree.min.js">

Usage

let button = $(selector)
let headings = $$(headings)

Example

let button = $('#click-me'); // Get the button with ID "click-me"
let headings = $$('article > h1'); // Get all H1 tags inside article