dom-apis
Installation
SKILL.md
DOM & Browser APIs Skill
Quick Reference Card
Element Selection
// Modern (preferred)
document.querySelector('#id');
document.querySelector('.class');
document.querySelectorAll('div.item');
// Scoped
container.querySelector('.child');
// Cache references
const els = {
form: document.querySelector('#form'),
input: document.querySelector('#input'),
btn: document.querySelector('#btn')
Related skills
More from pluginagentmarketplace/custom-plugin-javascript
data-structures
Master JavaScript objects and arrays including manipulation methods, prototypal inheritance, and complex data structure patterns.
7performance
JavaScript performance optimization and Web Vitals improvement techniques.
5asynchronous
Master asynchronous JavaScript patterns including callbacks, promises, async/await, event loop mechanics, and real-world async patterns.
5security
JavaScript security best practices and vulnerability prevention.
4testing
JavaScript testing with Jest, Vitest, and Testing Library for comprehensive test coverage.
4patterns
JavaScript design patterns and architectural best practices.
4