Any downsides to using ASP.Net AJAX and JQuery together - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T20:28:38Z http://stackoverflow.com/feeds/question/65129 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/65129/any-downsides-to-using-asp-net-ajax-and-jquery-together 11 Any downsides to using ASP.Net AJAX and JQuery together rams 2008-09-15T17:54:10Z 2009-02-15T00:10:17Z <p>We are planning to use the JQuery library to augment our client side JavaScript needs. </p> <p>Are there any major issues in trying to use both ASP.Net AJAX and JQuery? Both libraries seem to use $ for special purposes. Are there any conflicts that we need to be aware of? </p> <p>We also use Telerik controls that use ASP.Net AJAX.</p> <p>TIA</p> http://stackoverflow.com/questions/65129/any-downsides-to-using-asp-net-ajax-and-jquery-together/65208#65208 5 Answer by hal10001 for Any downsides to using ASP.Net AJAX and JQuery together hal10001 2008-09-15T18:02:14Z 2008-09-15T18:02:14Z <p>jQuery has a noConflict() method as a part of the core, but it then requires that you either use jQuery as your named function or something else of your choosing (instead of the dollar selector). However, I will say that the method is often dependent on the implementation of the "competing" library. I have tried to use it for a Ning social network (which used Dojo), and for Magento (which uses Prototype), and I could not get either to play right with jQuery. This is just my personal experience, and others have been very successful.</p> <p><a href="http://docs.jquery.com/Core/jQuery.noConflict" rel="nofollow">http://docs.jquery.com/Core/jQuery.noConflict</a></p> http://stackoverflow.com/questions/65129/any-downsides-to-using-asp-net-ajax-and-jquery-together/65574#65574 7 Answer by BlackTigerX for Any downsides to using ASP.Net AJAX and JQuery together BlackTigerX 2008-09-15T18:45:12Z 2008-09-15T18:45:12Z <p>We have used ASP.NET Ajax, JQuery and Telerik components on a large project for quite a while and haven't had any issues</p> <p>I would definitely recommend using JQuery</p> http://stackoverflow.com/questions/65129/any-downsides-to-using-asp-net-ajax-and-jquery-together/67722#67722 3 Answer by Euro Micelli for Any downsides to using ASP.Net AJAX and JQuery together Euro Micelli 2008-09-15T22:47:41Z 2008-09-15T22:47:41Z <p>The developers of ASP.NET Ajax took specific steps to make sure that the library could be used in conjunction with JQuery.</p> <p>For example, the ATLAS CTP (the beta which became ASP.NET Atlas) used to have a $() function, but it was removed and replaced with $get().</p> http://stackoverflow.com/questions/65129/any-downsides-to-using-asp-net-ajax-and-jquery-together/67754#67754 1 Answer by qui for Any downsides to using ASP.Net AJAX and JQuery together qui 2008-09-15T22:53:39Z 2008-09-15T22:53:39Z <p>I have been using ext which is another javascript framework with .net. It is far easier to use than old fashioned HTML form controls</p> <pre><code>&lt;input type="text" id="whatever" /&gt; </code></pre> <p>Than using ASP.net form controls. You probably want to use the cool javascript framework form validation as opposed to the not so great built in .net validators too, but I guess that's down to your preference</p> <p>If you do want to carry on using .net controls, remember that the ID generated in markup is different to what you define, so if you want to reference a control by id in JS use:</p> <pre><code>&lt;%=MyControlId.ClientID%&gt; </code></pre> http://stackoverflow.com/questions/65129/any-downsides-to-using-asp-net-ajax-and-jquery-together/67907#67907 1 Answer by gregmac for Any downsides to using ASP.Net AJAX and JQuery together gregmac 2008-09-15T23:22:55Z 2008-09-15T23:22:55Z <p>One downside is that server side controls can get renamed, depending on their containers. For example, you might have:</p> <pre><code>&lt;asp:panel id="panel1" runat="server"&gt;&lt;/asp:panel&gt; </code></pre> <p>This may be rendered to the page as:</p> <pre><code>&lt;div id="ctl00$panel1"&gt;&lt;/div&gt; </code></pre> <p>So if you write jQuery using <code>$('#panel1')</code> as a selector, it won't work. The way around this is to generate the id dynamically, eg:</p> <pre><code> Dim js as String = "$('" &amp; panel1.ClientID &amp; "').whatever();" </code></pre> <p>This can make the javascript a bit unreadable, but it does work quite well. I work on a large web app using this method, and jQuery has saved us a TON of time, not to mention making the site look and work much better.</p> http://stackoverflow.com/questions/65129/any-downsides-to-using-asp-net-ajax-and-jquery-together/78207#78207 2 Answer by Dave Ward for Any downsides to using ASP.Net AJAX and JQuery together Dave Ward 2008-09-16T23:05:20Z 2008-09-16T23:05:20Z <p>For what it's worth, there is no conflict between jQuery's $ function and ASP.NET AJAX's $ prefixed shortcut functions ($get, $find, $create, etc). Just the same as using a variable <strong>f</strong> doesn't prevent you from using a variable named <strong>f</strong>oo.</p> <p>jQuery and ASP.NET AJAX work well together in the majority of cases. In the past year, the only time I've seen ASP.NET AJAX break jQuery code was <a href="http://forums.asp.net/t/1313299.aspx" rel="nofollow">this scenario with jDrawer</a>. The workaround wasn't bad though.</p> http://stackoverflow.com/questions/65129/any-downsides-to-using-asp-net-ajax-and-jquery-together/150714#150714 1 Answer by Euro Micelli for Any downsides to using ASP.Net AJAX and JQuery together Euro Micelli 2008-09-29T21:16:43Z 2008-09-29T21:16:43Z <p>A recent development related to this question:</p> <p>Scott Guthrie posted on September 28th 2008 (see: <a href="http://weblogs.asp.net/scottgu/archive/2008/09/28/jquery-and-microsoft.aspx" rel="nofollow">http://weblogs.asp.net/scottgu/archive/2008/09/28/jquery-and-microsoft.aspx</a>) that Microsoft will actually <strong>begin shipping JQuery with Visual Studio</strong>. MVC projects will include the library by default. Scott indicates that this is being done with the consent and encouragement of the JQuery team.</p> <p>See the original post for <a href="http://weblogs.asp.net/scottgu/archive/2008/09/28/jquery-and-microsoft.aspx" rel="nofollow">full details</a>.</p> http://stackoverflow.com/questions/65129/any-downsides-to-using-asp-net-ajax-and-jquery-together/312413#312413 1 Answer by Morten Bergfall for Any downsides to using ASP.Net AJAX and JQuery together Morten Bergfall 2008-11-23T11:33:35Z 2008-11-23T11:33:35Z <p>Apparently, Telerik has begun adding jQuery to some of their RadControls, starting from release Q3.</p> <p>I use both jQuery and RadControls, but haven't had the time to look any further into this entanglement...could swing both ways....<br /> I have an omnius feeling that this entails more clusterf***, but that's just based on general experience with some of this and a little bit of that ;-)</p> <p>Check out Atanas Korchev's blog at Telerik on just this subject :<br /> <a href="http://blogs.telerik.com/AtanasKorchev/Posts/08-11-06/ASP_NET_Ajax_Controls_and_jQuery.aspx" rel="nofollow">http://blogs.telerik.com/AtanasKorchev/Posts/08-11-06/ASP_NET_Ajax_Controls_and_jQuery.aspx</a></p> <p>and the best of luck to us all when MS, jQuery, Telerik, JP Morgan and McDonalds all mingle and mash upon our desktops... ;-)</p> http://stackoverflow.com/questions/65129/any-downsides-to-using-asp-net-ajax-and-jquery-together/550029#550029 1 Answer by BeaverProj for Any downsides to using ASP.Net AJAX and JQuery together BeaverProj 2009-02-15T00:10:17Z 2009-02-15T00:10:17Z <p>I've used jQuery with ASP.NET Ajax as they both do different things well. I've never had an issue with using the two together. In fact, I get around the wierd ASP.NET id mishmash by using the super powerful jQuery selectors. By being able to select classes and sub-elements of elements (basically CSS) it makes it very easy to use.</p>