работа с иностранными символами в питоне

jQuery позволяет вам изменять настройки по умолчанию при подключении автозаполнения к входу:

$('#autocomplete-form').autocomplete({
   maxHeight: 200, //you could easily change this maxHeight value
   lookup: array, //the array that has all of the autocomplete items
   onSelect: function(clicked_item){
      //whatever that has to be done when clicked on the item
   }
});
0
задан Sigurjón 24 February 2015 в 18:11
поделиться