So currently I am trying to use the Jquery Autocomplete widget in my grails project, however, using a jquery-ui-1.10.3.custom.js , the grails integration plugin for jquery-ui automatically includes a lot of addons for Jquery (Sortable, Draggable, autocomplete, etc.) I am however, using a seperate script for sortable (
http://johnny.github.com/jquery-sortable/ ), as it provides functionality for nested lists. However, it seems that the Jquery method definition for sortable overrides the external scripts. How exactly to I get Jquery-UI to ignore any references to $().sortable? I have to tried to edit the jquery-ui.js file, editing out the .sortable method, but for some reason, whenever I include jquery-ui in my application, it breaks my sortable script. Does anyone know how exactly I can edit my jquery.js to ignore the .sortable call, but maintain the call in my external script?