You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/*! Ajax Control Toolkit Autocomplete plug-in v0.1.1 | (c) 2011-2013 Christian Wenz | http://opensource.org/licenses/BSD-3-Clause */(function(n){n.fn.actAutocomplete=function(t){var i={count:10};return t&&n.extend(i,t),this.each(function(){if(i.servicePath&&i.serviceMethod)n(this).autocomplete({source:function(t,r){var u=t.term;n.ajaxSettings.contentType="application/json",n.ajax({type:"POST",url:i.servicePath+"/"+i.serviceMethod,data:JSON.stringify({prefixText:u,count:i.count}),format:"json",contentType:"application/json; charset=utf-8",success:function(n){r.apply(this,[n.d])}})}});else throw"You need to set the servicePath and serviceMethod options!";})}})(jQuery)