1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| jQuery(document).ready(function($) {
tab_loc['25'] = [{ value: "41", label: "Culoz" },{ value: "89", label: "Neuville-sur-Ain" },{ value: "73", label: "Versailleux" },{ value: "57", label: "Villereversure" }];
tab_loc['21'] = [{ value: "85", label: "Challes-la-Montagne" },{ value: "69", label: "Condeissiat" },{ value: "53", label: "Crans" },{ value: "37", label: "Saint-Denis-en-Bugey" }];
var catInput = $( "#category" ),
catInputID = $( "#category-id" ),
locInput = $( "#location" ),
locInputID = $( "#location-id" );
catInput.autocomplete({
minLength: 0,
source: tab_loc[locInputID.val()], //La source que je ne comprends pas
focus: function( event, ui ) {...},
select: function( event, ui ) {...}
}).data( "ui-autocomplete" )._renderItem = function( ul, item ) {...}; |
Partager