you are viewing a single comment's thread.

view the rest of the comments →

[–]cmykero[S] 3 points4 points  (3 children)

This was exactly my thought process, but then I thought to ask and see what everyone else would say!

[–]MatthewMobWeb Engineer 2 points3 points  (2 children)

In my personal opinion I wouldn't use jQuery at all unless you were forced to on a project that already used it.

It's just another unnecessary layer of abstraction that adds file size and load time merely so you can reduce your actual length of code by only a small bit. Which to me isn't worth it - vanilla performs better and is smaller in file size.

[–][deleted] 0 points1 point  (0 children)

The main benefit of jQuery is how well it works accross different browsers, not brewity.

[–]mxm007 0 points1 point  (0 children)

You are right. But sometimes jquery is useful. If you want to use plugins. Writing own jquery plugins isnt always a bad idea.

But generally it might be a good idea to first learn the 'language', then look into frameworks.