Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
620hun83707yIf you look into how DOM manipulation works these days, and you might find that jQuery doesn't make a huge difference. In fact, I completely avoid using it.
-
Orionss28977y@Huuugo After thinking, I noticed that if I was doing with Angular what I'm doing with jQuery, it would be completely useless and heavy. I'm just working on a little app :)
-
vertti4537yVirtual DOM is the trend of web apps now. I suggest checking at least one of these libraries to learn about it. It might be implemented as a standard feature in browsers later on
-
Angular is a full fledged framework while jQuery is a library. So yeah Angular may not be the right tool for the job.
React may be better suited for that case since it'sā a DOM manipulation library.
jQuery is old and most likely not the right tool, you can either use React/Angular/Vue or just go with plain JavaScript ( http://youmightnotneedjquery.com ) -
Huuugo25207yTo be honest, for all smaller websites or those not requiring much interaction, Ajax and stuff. I would always stick to jquery or vanilla JS.
Related Rants
They were right, jQuery is 1000 times smoother to use than typical DOM manipulation š
undefined
javascript
jquery
wow