There is a conflict between jquery ui and jquery validate plug-in. How do i resolve . I am using jquery ui auto complete which does not work if i include jquery validate
$('#term').autocomplete({
minLength : 4,
source : '/search',
select: function(event, ui)
{
window.location = ui.item.url;
}
});
Old versions of jquery-validate contain their own delegate method which interferes with the new delegate method introduced in jQuery 1.4.2. Newer versions of jQuery UI might be dependent on the jQuery version of .delegate. Make sure you are using a new version of jquery-validate (like 1.8).