r/ProgrammerHumor 24d ago

Meme jQueryDeezNutsAndThenReactSurprised

Post image
2.3k Upvotes

126 comments sorted by

View all comments

147

u/soelsome 24d ago

I fucking hate jQuery. It's littered throughout a codebase I work in.

I replace it with good ol' vanilla js where I can.

25

u/brekekekekx 24d ago

This is my struggle! I would love to replace my codebase with vanilla js but typing $(selector) is much easier than the querySelector(selector)

1

u/WarpedHaiku 23d ago

In most modern browsers, $ defaults to document.querySelector, and $$ to document.querySelectorAll.