2012-01-05 14:31:42 +00:00
|
|
|
$(document).ready(function(){
|
2012-01-11 08:28:32 +00:00
|
|
|
|
|
|
|
//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
|
|
|
|
|
|
|
});
|