cheatcode / joystick

A full-stack JavaScript framework for building stable, easy-to-maintain apps and websites.
https://cheatcode.co/joystick
Other
209 stars 11 forks source link

Simplified DOM selection #375

Closed rglover closed 2 months ago

rglover commented 8 months ago

It'd be nice to have some short-hand aliases baked in to Joystick for DOM selection.

For example...

// Old
document.querySelector('.blah');
document.querySelectorAll('.blah');

// Short-hand
$.qs('.blah');
$.qsa('.blah');

No change in behavior, purely an alias. If/when #7 becomes a reality, these could be easily swapped with their native equivalents.