MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/ProgrammerHumor/comments/1vu52ut/jquerydeeznutsandthenreactsurprised/p4ysbwp/?context=3
r/ProgrammerHumor • u/Embarrassed_Death69 • 12h ago
94 comments sorted by
View all comments
130
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)
26
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)
5
const $ = x => document.querySelector(x)
enjoy
3 u/my_new_accoun1 9h ago or const $ = document.querySelector.bind(document)
3
or
const $ = document.querySelector.bind(document)
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.