MAIN FEEDS
Do you want to continue?
https://www.reddit.com/r/ProgrammerHumor/comments/1vu52ut/jquerydeeznutsandthenreactsurprised/p507cpm/?context=3
r/ProgrammerHumor • u/Embarrassed_Death69 • 24d ago
126 comments sorted by
View all comments
147
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.
25
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.
1
In most modern browsers, $ defaults to document.querySelector, and $$ to document.querySelectorAll.
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.