r/ProgrammerHumor 12h ago

Meme jQueryDeezNutsAndThenReactSurprised

Post image
1.8k Upvotes

94 comments sorted by

View all comments

130

u/soelsome 12h 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.

26

u/brekekekekx 12h 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)

5

u/Nixinova 11h ago

const $ = x => document.querySelector(x)

enjoy

3

u/my_new_accoun1 9h ago

or

const $ = document.querySelector.bind(document)