Twitter Typeahead with Local Dataset -
i can't understand why tutorial example not work me: i have external js libraries: " https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js " " http://twitter.github.io/typeahead.js/releases/latest/typeahead.bundle.js " and code on load document: <script type="text/javascript"> $(document).ready(function () { $('input.typeahead').typeahead({ name: 'cars', local: ['audi', 'bmw', 'bugatti', 'ferrari', 'ford', 'lamborghini', 'mercedes benz', 'porsche', 'rolls-royce', 'volkswagen'] }); }); </script> i have css: <style type="text/css"> .bs-example { font-family: sans-serif; position: relative; margin: 100px; } .typeahead, .tt-query, .tt-hint { border: 2px solid #cccccc; border-radius: 8px; ...