vote up 2 vote down star
1

I am new here.

If this is already asked, please delete it.

Which one would you choose?

flag
5  
I'd choose dozo - no question – ChssPly76 Aug 10 at 23:54
3  
Welcome. The search function is up to the right: stackoverflow.com/search?q=jquery+prototype+dojo/… – deceze Aug 10 at 23:56
5  
I'm sure he was just having trouble finding the search function. Way to make him feel welcome. – Anthony Aug 10 at 23:57
1  
I see no noob-bashing here (yet). Nobody down-voted or tried to close this question. I can maybe understand somebody having trouble with search, but I don't think there's an excuse for not proofreading your question. It's not English spelling we're talking about here. – ChssPly76 Aug 11 at 0:03
1  
I second dozo, it's totally awesome. – MGOwen Aug 11 at 0:19
show 5 more comments

7 Answers

vote up 3 vote down

This question was asked multiple times, and the answer depends on many factors.

If all you want is to provide simple gradual enhancements to existing web applications, any major JavaScript framework will do just fine.

I saw so many badly made web sites with "custom" JavaScript code that nowadays I always recommend to pick a framework and use it without going guerrilla. At least it will be a tested code, which works on most browsers. Unless of course you are a guru and the web site in question is a part of power trip.

Only if you want more than simple crutches, or you have some special requirements, you will see the difference. But you have to ask right questions for that.

These are questions I would ask:

  • Do I want to use "one page web applications" A.K.A. "thick client" to reduce server load and/or improve user's experience?
    • What units (building blocks) are supported by the framework? What level?
      • I may want: classes, widgets (JavaScript + HTML + CSS), modules, packages.
      • What units are provided out of box and supported as a part of toolkit?
      • How simple it is to write my own units?
      • How to do unit testing for my own units?
      • What does it take to make portable and reusable units?
    • Is there any provisions to track dependencies between units, or is it manual?
    • What code managing tools are supported?
      • How to do unit testing for my own units?
      • How to create a release version of my code?
      • I may want:
        • Merging relevant files into one file in correct order (defined by dependencies).
        • For big web size I may want 3-4 such files.
        • I want it to be done for JS and CSS files.
      • Is the minification of JS/CSS supported automatically or should I do it myself?
      • Any other optimizations or helpers? Examples:
        • Producing optimized results according to a supplied browser profile.
        • Inlining HTML.
        • Simple integration with a server framework I use.
  • What provisions are provided to maintain the expected browser-based UI? Examples:
    • If user is in the middle of my "one page application", can she bookmark it and return back later without starting the whole process anew?
      • Can she send such bookmark to anybody else?
    • Are back/forward buttons supported within a single page?
  • Do I target an international audience?
    • Is it simple to provide the same level of service to users from different countries?
    • Does the framework have a translation mechanism I can reuse?
    • Does it support the internationalization I need?
      • Example: left-to-right vs. right-to-left languages.
  • Does it support the localization I need?
    • Example: European dates vs. Japanese dates vs. American dates.
  • What are technical provisions to support my core functionality?
    • Example: many web sites use forms.
      • How easy to do CRUD?
      • What are validation mechanisms?
      • How flexible they are?
      • Does the validation work well with the internationalization/localization I need?
  • Do I need to improve the accessibility for people with special needs? Example would be a web site with medical information.
    • How easy the existing UI solutions and my own units work with screen readers?
    • Is there any special provisions for low-vision users?
    • Some people (e.g., elderly people, people with arthritis) can have trouble to position the mouse pointer with precision. What is the solution provided by the framework?
      • Frequently power users are more productive with keyboard-oriented interface.
  • What kind of provisions are there for high-performance web sites?
    • Is there any unavoidable calls to servers?
    • Is it cache/CDN friendly?
      • Can I create my own CDN distribution?
      • Is there any unavoidable calls to local servers?
  • What kind of community are there? Example: 1 developer vs. 50 developers.
    • Who are other users (companies, and individuals)?
      • How do they use the framework? The use can be insignificant.
    • What are the support channels? Examples: forums, mailing lists, IRC channels, and so on.
    • Is there a commercial option for support?
    • What books and web sites are available? Examples: blog posts, slides, screencasts, and so on.

Don't be afraid if some answers are negative. It just means that either you should look for solutions from several sources, or roll it out on your own. The problem with the former is that the more sources you have, the more difficult to make them work together without hiccups and excessive bloat. The problem with your own solution is that while you may taylor it to fit your situation perfectly (if you have all necessary talents and resources), it wouldn't be as battle-tested and watched by 1000s eyes as existing frameworks. I am not talking about bugs (bugs are easy as long as you have time to do all the testing), I am talking about selected design decisions, algorithms, and other brainy stuff.

I am a Dojo developer ⇒ I use Dojo. Why? :-) If you have to ask:

link|flag
vote up 3 vote down

I learnt Dojo because its support by Zend Framework.

It took me a week (a long week..) but now, I really enjoy it, and I feel very productive!

From what I read, most JS libraries don't encourage you to learn the JavaScript language fundamentals or the DOM. If you want to write great JavaScript applications, the problem isn't the library you use, but how you understand the language, the DOM, and the library, if any.

(I don't have any experience with JQuery/Prototype, and didn't had previous Javascript experience)

link|flag
vote up 0 vote down

I think jQuery.js provides best features to you. If you want to see the comparison in all JavaScript frameworks than go through this link:-

http://en.wikipedia.org/wiki/Comparison_of_JavaScript_frameworks.

This will help you to choose.

Regards, Mannusanghi

link|flag
vote up 2 vote down

You can also check the performance comparision of these tools, i was help me choosing right tool for me. you can access this page from dojo-vs-jquery-vs-mootools-vs-prototype-performance-comparison

Otherwise, you can also find advantages and other summary infos of these tools from prototype-jquery-mootools-ext-dojo-speed-comparison

Or you should look this discussion on the stackoverflow

link|flag
It's too bad that don't show jQuery >1.3 since they have really improved their selector engine, which I believe it now beats pretty much everything. – Darryl Hein Aug 11 at 8:05
vote up 0 vote down

What I biased my decision on was adoption by major companies. When you go to the jQuery website you can see some of the companies that use it. Also Microsoft has decided to include it as-is in Visual Studio with Intellisense, I mean come if Micorsoft is using it with out messing with it or coming up with their own version it's got to be OK right..I think ;) ?

More importantly take the time to use all the libraries in basic programs and take them for a test drive and see which one seems the most intuitive and easy of use. Plus the amount of support available from documentation, blogs, examples, tutorials, etc.

I would definitely recommend jQuery. It is extremely easy yet can be extremely powerful depending on what your needs are. There are a lot of examples, tutorials, and blogs about jQuery with some really good books available to help you.

link|flag
1  
"BIASED my decision", huh? There's a Freudian slip if I ever saw one :-) – ChssPly76 Aug 11 at 2:20
IBM puts a lot of money into Dojo, and bests Microsoft in the behemoth computer company department. – Steven Huwig Aug 12 at 3:08
No doubt and I have nothing against Dojo, but the list of major companies using jQuery were Google, Dell, Bank Of America, MLB, digg, NBC, CBS, Netflix, Mozilla.org, etc, so in my opinion that was enough for me. I doubt those companies pay for or contribute like perhaps IBM does for Dojo. Realistically I think time will determine which one developers like best, I wouldn't be surprised if they both continue to be successful, because they are both powerful libraries. – ewrankin Aug 12 at 10:13
vote up 1 vote down

As always, it depends on your application. But I'd recommend jQuery first. Light and very functional, and leads you to write clean code.

link|flag
vote up 3 vote down

The short answer is jQuery.

The longer answer is: type each one into google, and see how many results you get for each (make sure to type Prototype JS for Prototype). That will give you an approximate measure of popularity. This is a subjective measure of a library's strengths, but can be helpful nonetheless.

And by 'dozo' I think you mean 'dojo'.

This has been discussed here at least a zillion times.

link|flag
3  
Google Trends! is.gd/2b10y – CMS Aug 11 at 0:00
@CMS - yes, there's that too :) – karim79 Aug 11 at 0:03

Your Answer

Get an OpenID
or

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