16 lines
347 B
JavaScript
Raw Normal View History

2012-01-05 14:31:42 +00:00
$(document).ready(function(){
//Autocomplete de recherche
$('input.searchCiblage').autocomplete({
delay:600,
source: function(request, response) {
$.getJSON('/dashboard/rcomptage', { q: request.term },
function(data) { response(data); }
);
},
select: function(event, ui){
window.location.href=ui.item.url;
}
});
2012-01-05 14:31:42 +00:00
});