JQuery and Asp.Net compatibility
I am trying to use jQuery library and Asp.net Ajax. The jQuery code is solid, I am working on a separate page. When I include jQuery code in an existing page using Asp.net Ajax, the jQuery code doesn't work.
I think it has to do with the name change.
How can I stop asp.net using mangling or something?
a source to share
If you run into serious naming issues, use QJuery's ability to use almost anything as a selector, including classes. Of course, class lookups are not as fast as ID lookups, but they are much less prone to mangling by auto-generated code.
Here is a good article describing How to work with jQuery in ASP.NET .
a source to share
Typically, the two structures do not interfere with each other. You may run into problems because since asp.net ajax adds a hole group of additional functionality to some basic types like string, int or data.
But usually this is not a problem when using jquery, but I had problems with a few plugins that probably weren't written, so this might be your problem.
With that said, it's hard to give you specific help without additional information and / or code.
a source to share
Perhaps two frameworks (jQuery and ASP.Net AJAX) clash when defining some operators like $.
This old forum post was made by someone facing a similar situation.
a source to share