1.0.3 • Published 4 years ago

@rushstart/core v1.0.3

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

Get it

$ npm i @rushstart/core

Use it

Add a <script> element for rushstart.js

<script src="path/to/rushstart/dist/rushstart.min.js"></script>

Or include it like webpack module

import $ from '@rushstart/core'
var $ = require("@rushstart/core")

And write very fast code:

/**
* Append a wrapper
*/
$('<div id="wrapper"></div>').forEach(element => document.body.append(element));

/**
* Attach an event handler to a child element that has not yet been created
*/
$('#wrapper').on("click", function() {
    console.log("clicked on", this);
}, '.clicker');

/**
* Append the child element
*/
$('<a class="clicker"></a>').forEach(element => document.wrapper.append(element));