horse.js

< 3Kb. autocomplete component of pure javascript.

        
  horsey(document.querySelector('input'), {
    suggestions: ['banana', 'apple', 'orange']
  });
        
      
        
  horsey(document.querySelector('input'), {
    suggestions: [
      { value: 'banana', text: 'Bananas from Amazon Rainforest' },
      { value: 'apple', text: 'Red apples from New Zealand' },
      { value: 'orange', text: 'Oranges from Moscow' },
      { value: 'lemon', text: 'Juicy lemons from Amalfitan Coast' }
    ]
  });
        
      
        
  horse(document.querySelector('input'), {
    suggestions: [
      { value: 'banana', text: 'Bananas from Amazon Rainforest' },
      { value: 'apple', text: 'Red apples from New Zealand' },
      { value: 'orange', text: 'Oranges from Moscow' },
      { value: 'lemon', text: 'Juicy lemons from the rich Amalfitan Coast' }
    ],
    onselect: function(input_dom, selected_li, suggestion) {
      alert("you select " + suggestion['text']);
    }
  });
        
      
        
  horsey(document.querySelector('input'), {
    suggestions: [
      { value: 'banana', text: 'Bananas from Amazon Rainforest' },
      { value: 'banana-boat', text: 'Banana Boat' },
      { value: 'apple', text: 'Red apples from New Zealand' },
      { value: 'apple-cider', text: 'Red apple cider beer' },
      { value: 'orange', text: 'Oranges from Moscow' },
      { value: 'orange-vodka', text: 'Classic orange vodka cocktail' },
      { value: 'lemon', text: 'Juicy lemons from Amalfitan Coast' }
    ],
    limit: 2
  });
        
      
        
  horsey(document.querySelector('input'), {
    suggestions: [
      { value: 'javascript', text: 'js全栈开发者' },
      { value: 'python', text: '珍爱生命,我用python' },
      { value: 'php', text: 'PHP是世界上最好的语言,没有之一' },
      { value: 'java', text: '我的最爱是java' }
    ]
  });
        
      

Get it on GitHub! hustcc/horse.js