Asp.net September 2012 Release ajax toolkit combobox is read only when using jquery. Any idea on how to avoid conflicts between jquery and ajax toolkit
Asp.net September 2012 Release ajax toolkit combobox is read only when using jquery. Any
Share
When you have other libraries together with jQuery you can use the
jQuery.noConflict()function to avoid the conflicts with the common symbols like the$Sample from jQuery page and how you use the
noConflict():The idea is that after you call the
$.noConflict();then all rest call to jQuery libraries are done using thejQueryand not the$symbol as on the example above.