simple-stack-query

0.2.0 • Public • Published

Simple stack query

A simple library to query the DOM from your Astro components.

<RootElement>
  <button data-target="btn">Click me</button>
</RootElement>

<script>
  RootElement.ready(($) => {
    $('btn').addEventListener('click', () => {
      console.log("It's like JQuery but not!");
    });
  });
</script>

📚 Visit the docs for more information and usage examples.

Package Sidebar

Install

npm i simple-stack-query

Weekly Downloads

165

Version

0.2.0

License

MIT

Unpacked Size

9.34 kB

Total Files

9

Last publish

Collaborators

  • bholmesdev