What is the benefits of using jQuery UI over plugins? - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T06:25:13Zhttp://stackoverflow.com/feeds/question/1026116http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1026116/what-is-the-benefits-of-using-jquery-ui-over-plugins10What is the benefits of using jQuery UI over plugins?shin2009-06-22T08:42:23Z2009-06-22T17:48:51Z
<p>jQuery 1.3.2 minified is 55.9K, and jQuery UI core itself has more than 110K and top of that each component adds more to this core.</p>
<p>I am wondering good reasons to use jQuery UI over plugins. </p>
<p>For example <a href="http://bassistance.de/jquery-plugins/jquery-plugin-accordion/" rel="nofollow">jQuery accordion plugin</a> has only 3.8K, <a href="http://flowplayer.org/tools/download.html" rel="nofollow">jQuery Tools</a> which does accordion, tooltips, tabs, scrollable, overlay and expose has only 5.8K, <a href="http://blog.threedubmedia.com/2009/01/dragdrop-updates.html" rel="nofollow">jQuery drag and drop plugin</a> has total 4.8K etc etc.</p>
<p>What is the benefits of using UI instead of using these plugins?
Is it worth to add more than 110k+ for what you are using for?</p>
<p>If so, why do you use it?</p>
<p>Can you post your reasons why you use jQuery UI and why you don't use it? </p>
http://stackoverflow.com/questions/1026116/what-is-the-benefits-of-using-jquery-ui-over-plugins/1026132#10261321Answer by Elzo Valugi for What is the benefits of using jQuery UI over plugins?Elzo Valugi2009-06-22T08:50:36Z2009-06-22T08:57:37Z<p>Plugins are not mantained by jQuery team.
jQuery UI is a set of basic plugins that other libraries usually implement in the core library, that are supported and mantained.
Only a select hand of plugins made it into UI, a few special interaction like drag and drop, a few widgets and a few effects, from thousands of plugins.</p>
http://stackoverflow.com/questions/1026116/what-is-the-benefits-of-using-jquery-ui-over-plugins/1026135#10261358Answer by karim79 for What is the benefits of using jQuery UI over plugins?karim792009-06-22T08:51:40Z2009-06-22T09:04:18Z<ul>
<li>Better support.</li>
<li>Better consistency with jQuery in
terms of API.</li>
<li>Documentation in the same place /
same format.</li>
<li>No bloat.</li>
<li>Compatibility with new jQuery
releases maintained.</li>
</ul>
http://stackoverflow.com/questions/1026116/what-is-the-benefits-of-using-jquery-ui-over-plugins/1026151#10261517Answer by Thinker for What is the benefits of using jQuery UI over plugins?Thinker2009-06-22T08:55:21Z2009-06-22T17:48:51Z<p>jQuery UI doesn't have to be used as whole 110kb library. You can download only parts that you need, and then it would be a smaller 'custom build'. </p>
<p>I prefer using jUI because it is created by jQuery Team, so if there is a bug it will be for sure patched (custom plugins sometimes are not updated). And I think jQuery team will always create most optimized version, and if someone will do better, they will update their code, like it was with introducing Sizzle in 1.3.</p>
http://stackoverflow.com/questions/1026116/what-is-the-benefits-of-using-jquery-ui-over-plugins/1027514#10275143Answer by zooglash for What is the benefits of using jQuery UI over plugins?zooglash2009-06-22T14:29:08Z2009-06-22T14:29:08Z<p>I personally feel that JQuery UI is a bit bloated, especially the whole themes feature which makes things rather complicated. If you just need one thing, such as tabs, there's no problem with other "standalone" plugins.</p>