Microsoft AJAX client library vs jQuery - Stack Overflow most recent 30 from stackoverflow.com 2009-12-22T01:21:37Z http://stackoverflow.com/feeds/question/609683 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/609683/microsoft-ajax-client-library-vs-jquery 3 Microsoft AJAX client library vs jQuery Judy 2009-03-04T08:22:23Z 2009-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#609693 5 Answer by Andrey Shchekin for Microsoft AJAX client library vs jQuery Andrey Shchekin 2009-03-04T08:26:30Z 2009-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#609695 4 Answer by Ben Alpert for Microsoft AJAX client library vs jQuery Ben Alpert 2009-03-04T08:27:25Z 2009-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#613601 2 Answer by Hemanshu Bhojak for Microsoft AJAX client library vs jQuery Hemanshu Bhojak 2009-03-05T04:47:21Z 2009-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>