Any downsides to using ASP.Net AJAX and JQuery together - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T20:28:38Zhttp://stackoverflow.com/feeds/question/65129http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/65129/any-downsides-to-using-asp-net-ajax-and-jquery-together11Any downsides to using ASP.Net AJAX and JQuery togetherrams2008-09-15T17:54:10Z2009-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#652085Answer by hal10001 for Any downsides to using ASP.Net AJAX and JQuery togetherhal100012008-09-15T18:02:14Z2008-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#655747Answer by BlackTigerX for Any downsides to using ASP.Net AJAX and JQuery togetherBlackTigerX2008-09-15T18:45:12Z2008-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#677223Answer by Euro Micelli for Any downsides to using ASP.Net AJAX and JQuery togetherEuro Micelli2008-09-15T22:47:41Z2008-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#677541Answer by qui for Any downsides to using ASP.Net AJAX and JQuery togetherqui2008-09-15T22:53:39Z2008-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><input type="text" id="whatever" />
</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><%=MyControlId.ClientID%>
</code></pre>
http://stackoverflow.com/questions/65129/any-downsides-to-using-asp-net-ajax-and-jquery-together/67907#679071Answer by gregmac for Any downsides to using ASP.Net AJAX and JQuery togethergregmac2008-09-15T23:22:55Z2008-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><asp:panel id="panel1" runat="server"></asp:panel>
</code></pre>
<p>This may be rendered to the page as:</p>
<pre><code><div id="ctl00$panel1"></div>
</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 = "$('" & panel1.ClientID & "').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#782072Answer by Dave Ward for Any downsides to using ASP.Net AJAX and JQuery togetherDave Ward2008-09-16T23:05:20Z2008-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#1507141Answer by Euro Micelli for Any downsides to using ASP.Net AJAX and JQuery togetherEuro Micelli2008-09-29T21:16:43Z2008-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#3124131Answer by Morten Bergfall for Any downsides to using ASP.Net AJAX and JQuery togetherMorten Bergfall2008-11-23T11:33:35Z2008-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#5500291Answer by BeaverProj for Any downsides to using ASP.Net AJAX and JQuery togetherBeaverProj2009-02-15T00:10:17Z2009-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>