Guest User

Untitled

a guest
Jul 18th, 2018
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. $("#pesquisa").typeahead({
  2. source: function (query) {
  3. return $.get("/Estabelecimento/GetDados", { q: query });
  4. },
  5. minLength: 3
  6. });
  7.  
  8. <div class="container">
  9. <div class="row">
  10. <div class="col-md-12">
  11. <div class="input-group">
  12. <input type="text" id="pesquisa" name="pesquisa" class="form-control typeahead" autocomplete="off" placeholder="Pesquisar" />
  13. <div class="input-group-btn"><button class="btn btn-primary">Pesquisar</button></div>
  14.  
  15. </div>
  16. </div>
  17. </div>
  18. </div>
  19.  
  20. ["Americanas", "Apple", "C & A", "Carrefour", "Microsfot", "Riachuelo", "Saraiva", "Sony"]
Add Comment
Please, Sign In to add comment