Skip to content

Instantly share code, notes, and snippets.

View AYZBTR's full-sized avatar
🎯
Focusing

Aayush Bhattarai AYZBTR

🎯
Focusing
View GitHub Profile
@joyrexus
joyrexus / jq_vs_js.md
Last active April 12, 2025 09:10
Comparison of jQuery and vanilla JS for basic DOM manipulation.

jQuery vs native JS

Selecting Elements

var divs = $("div");

var divs = document.querySelectorAll("div");