Microsoft AJAX client library vs jQuery - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T01:21:37Zhttp://stackoverflow.com/feeds/question/609683http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/609683/microsoft-ajax-client-library-vs-jquery3Microsoft AJAX client library vs jQuery Judy2009-03-04T08:22:23Z2009-03-05T04:47:21Z
<p>A lot of discussion are going on with jQuery and MS Ajax after the jquery integrated news.</p>
<p>I'm currently in the process of convincing my team to consider jQuery, but I'm not a pro on either of them.</p>
<p>I really want some good comparisons between jQuery and MS Ajax "Client" library, as my team is arguing that we can what jQuery can if we just use raw ms ajax client library, and jQuery seems to just have a better selector.</p>
<p>Can someone give some good insights of why use jQuery than MS Ajax in some scenarios? if better performance concerns?</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/609683/microsoft-ajax-client-library-vs-jquery/609693#6096935Answer by Andrey Shchekin for Microsoft AJAX client library vs jQuery Andrey Shchekin2009-03-04T08:26:30Z2009-03-04T08:26:30Z<p>I use both. I think these two are for different use cases -- MS AJAX is for communicating some data from server to client during the initial load (ScriptControl), and for creating the initial control-element associations. Also the web service wrappers are extremely useful for data AJAX, and wrappers depend on MS AJAX library.</p>
<p>And jQuery is for DOM traversal/modification after the page has loaded. MS AJAX can do this, but in much more complex way than jQuery. Also, jQuery as a framework gives to access to a ton of plugins -- client-side scripts and controls, such as menus/trees/etc.</p>
http://stackoverflow.com/questions/609683/microsoft-ajax-client-library-vs-jquery/609695#6096954Answer by Ben Alpert for Microsoft AJAX client library vs jQuery Ben Alpert2009-03-04T08:27:25Z2009-03-04T08:27:25Z<p>SO Question: <a href="http://stackoverflow.com/questions/498680/pros-and-cons-of-ms-ajax-vs-jquery-in-an-asp-net-mvc-app">Pros and cons of MS Ajax vs. jQuery in an ASP.NET MVC app?</a></p>
http://stackoverflow.com/questions/609683/microsoft-ajax-client-library-vs-jquery/613601#6136012Answer by Hemanshu Bhojak for Microsoft AJAX client library vs jQuery Hemanshu Bhojak2009-03-05T04:47:21Z2009-03-05T04:47:21Z<p>Microsoft is now shipping jQuery as part of Asp.net MVC. They will not be using jQuery internally but is promoting it. Have a look at <a href="http://weblogs.asp.net/scottgu/archive/2008/09/28/jquery-and-microsoft.aspx" rel="nofollow">this</a> article.</p>