<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Typeahead</title> <script type="text/javascript" src="jquery.min.js"></script> <script type="text/javascript" src="typeahead.js"></script> <script type="text/javascript"> $(document).ready(function(){ $('input.typeahead').typeahead({ name: 'accounts', local: ["Bangalore","Bidar","Ganagapur","Gulbarga","Raichur"] }); }); </script> <style type="text/css"> .bs-example{ font-family: sans-serif; position: relative; margin: 100px; } .typeahead, .my-query, .my-hint { border: 1px solid #CCCCCC; border-radius: 8px; font-size: 18px; height: px; line-height: 20px; outline: medium none; padding: 8px 12px; width: 240px; } .typeahead { background-color...