I am working on a large site with two conflicting jquery plugins enabled for autocomplete.
1) jquery.autocomplete.js (not included in jquery ui), which does:
$.fn.extend({ autocomplete: function ...
2) jquery.ui.autocomplete.js (from the latest jquery ui library), which also uses the autocomplete keyword.
$.widget( "ui.autocomplete", { ...
Is there a way to indicate that I only use the second jquery.ui widget when calling
$( "#tags" ).autocomplete ...
without changing two files?
dov.amir
source share