vote up 3 vote down star
3

Possible Duplicates:
Why does everyone like jQuery more than prototype/script.aclo.us or mootools or whatever?
Why would I want to use jQuery?

I have little experience with JQuery, but from what I've seen so far I am very impressed! I would like to present JQuery to my boss in a favorable light in the hopes that he'll like it, and subsequently begin to encourage my fellow developers to start using it.

What are some of the primary selling points of JQuery, or in other words, why should developers be using it?

The only reason that I'm aware of right now is cross-browser support, but I'm sure there are a host of others.

flag
1  
Instead of what? Are you selling the idea of Rich UI in the browser? The idea that JQuery is better than an alternative library? Different arguments is each case. – djna Aug 17 at 15:58
There are. And they've all been discussed to death. close++ – Yuval A Aug 17 at 15:59
1  
Why bother with low-level JavaScript issues, hacking around a lot of JavaScript when you have a free (high-level) library in place which does everything (and more) for you and abstracts and handles the details of each of the browser for you? And it is very well documented, there are plenty of extensions, plugins etc. around, developed by the community. – Juri Aug 17 at 16:09
Thanks for the comments all. Closing because it's a dupe. – Jagd Aug 17 at 16:10

closed as exact duplicate by Yuval A, Crescent Fresh, Nosredna, John Sheehan, gnovice Aug 17 at 16:14

19 Answers

vote up 2 vote down check

Because Microsoft says it's cool?

link|flag
They do? . – Arnis L. Aug 17 at 15:59
What? (with at least 15 characters...) – ricebowl Aug 17 at 16:00
1  
Why the downvotes? I'd say it's fairly significant that the open source jQuery got adopted into Visual Studio. weblogs.asp.net/scottgu/archive/… – ceejayoz Aug 17 at 16:01
1  
Microsoft is starting to ship jQuery with Visual Studio: weblogs.asp.net/scottgu/archive/… – T.J. Crowder Aug 17 at 16:02
vote up 3 vote down

It's easy to use and easy to debug with Firebug.
It has tons of already made plugins that do many things.
Check this out for examples.

link|flag
This is great to sell to another developer, but a PHB? – Jeremy French Aug 17 at 16:02
vote up 1 vote down

Easy abstraction and implementation of an unlimited number of cool effects.

link|flag
vote up -1 vote down

It is the industry standard for dynamic web pages.

Which means that you can leverage a lot of other peoples work, people will want to work with it and it will be relatively easy to hire people who know it in the future.

It is also tested on a lot of web sites, so you get less bugs than you would with your home rolled javascript

link|flag
why the downvote? – Jeremy French Aug 17 at 16:00
'industry standard'? No; I don't think it is. It's popular, certainly, and open-source, easy to develop for and does a lot of the hard work of using JS for you. But I can't accept that it's a 'standard' of any kind. (Incidentally, I didn't down-vote, I just thought I'd respond) – ricebowl Aug 17 at 16:02
Industry standard? Nonsense... – Yuval A Aug 17 at 16:03
Really?!? I can't imagine anyone worth their salt would do anything substantial on the web (with dynamic pages) not using JQuery, perhaps not an official standard bit a de-facto standard. – Jeremy French Aug 17 at 16:21
vote up 3 vote down

This question is not a duplicate, but some information can be found on the question "Why is jQuery so widely adopted versus other javascript frameworks?"

link|flag
vote up 1 vote down

If you need to convince boss - just tell him that in trade of learning a bit - client side development will be much more easier and product will be more cross-browser compatible. In result - there will be less bugs, faster development time and likely - better UI in general.

link|flag
vote up 2 vote down
  • Faster development time
  • Less time spent on compatibility issues (cross-browser bugs are mostly taken care of by the framework)
  • Ease of use: Let's you do great things easily
link|flag
vote up 2 vote down

It abstracts away some of the browser differences, which greatly simplifies your code.

link|flag
vote up 2 vote down
  • The selector engine
  • Plugin model, with lots of community plugins
  • Very lightweight
  • Good cross-browser support
link|flag
vote up 0 vote down

It is a very consistent framework that improves productivity and renders cross browser javascript development seamless.

link|flag
vote up 0 vote down

heres a couple reasons

  1. It can simplify building what you need with much less code then traditional javascript by itself
  2. It is cached by many users if you use the google hosted version
  3. cross browser support
  4. many users so it easy to get help/support
  5. lightweight
  6. many plugins
link|flag
vote up 0 vote down

It's used in order to enhance the finished website/application in a way that's cross-browser compatible. The cross-browser part is the big selling point for my own use (and jQuery isn't unique in this, I believe that mootools is similarly cross-browser compatible), in that I don't have to spend time writing checking code to see whether or not I can do something, I can just write $(this).slideUp('slow') and be done with it.

...I like to think it's making the best use of my time, rather than laziness but...um; I may be biased. =)


Edited after re-reading the question.

From what I understand, if it's a sell-to-the-boss argument, present use-cases of jQuery, with the shiny. I'm under the distinct impression that managers like shiny. Especially when the shiny is free (I think, even for commercial use) and takes rather less than one paid-hour to implement (albeit not necessarily completely implement) and demonstrate.

link|flag
vote up 0 vote down

adopted by microsoft for some of their tools:
"Microsoft will be shipping jQuery with Visual Studio going forward"
http://weblogs.asp.net/scottgu/archive/2008/09/28/jquery-and-microsoft.aspx

active community support (has blog, mailing list, and IRC chat on freenode)

easy to use without adopting an entire framework (ie: can start with point-solutions, and expand as you show successful use).

link|flag
vote up 0 vote down

Cross browser support is a big one - mainly due to IE6. It is also easy to extend with JQuery UI and various plugins like AjaxForms - submit a form via ajax. AjaxForms also works for input file elements, which is a plus. JQuery itself, is lightweight, fast, extendable, and constantly improving. Also, with JQuery UI, you can use the theme roller styles in your own site, and the skin the entire site by change a few css files, which you can generate from jquery UI's site. Its been a big help where I currently am. Before we used Dojo, but we all find JQuery a lot easier to use.

link|flag
vote up 0 vote down

For me it would probably be the large number of plug-in UI widgets available for it. But before committing, it's well worth looking at several of the alternatives, such as Prototype, Dojo, MooTools, YUI.

link|flag
vote up 0 vote down

Jhon's words in the foreword of the book jQuery in Action:

It’s all about simplicity. Why should web developers be forced to write long, complex, book-length pieces of code when they want to create simple pieces of interaction? There’s nothing that says that complexity has to be a require- ment for developing web applications.

link|flag
vote up 0 vote down

Lots of good answers here. Another reason to like jQuery is all the plugins. There's a big ecosystem around jQuery and you can quickly find reusable Javascript code for a variety of purposes. For instance, flot, a charting library. There's no reason that library couldn't have been standalone or built with Dojo or Prototype or the like. But like so many libraries, it uses jQuery, and so the jQuery ecosystem as a whole gets bigger.

link|flag
vote up 0 vote down
  • 1 out of 5 web sites right now are using jQuery.
  • easily handles cross-browser quirks
  • Huge community of developers contributing plugins and tutorials
  • Huge Conference dedicated to jQuery
  • jQuery's motto of "write less do more" is exaclty as it says you have the power to write amazing things in short amounts of code.
  • Book have been written on jQuery, Learning jQuery, jQuery in Action and the upcoming jQuery Cookbook.

Other benefits:

  • Microsoft has partnered with jQuery to include it in ASP.NET MVC and provides intellisense documentation files.
  • Some of the top web sites in the world are using jQuery, Digg, Netflix
  • Google CDN allows you to link to jQuery on Google's CDN to provide faster downloads of the jQuery library.
link|flag
vote up 0 vote down

What do you use now? You mentioned being impressed. Impressed by what? Use that. You need to know why you like it before you can sell it to someone else.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.