Skip to main content

Posts

Showing posts with the label Bootstrap

Twitter typehead.js basic example with token field.

A simple example for twitter typehead.js. The server should return an array of type: [ { name: "asas", value: "1234" }, { name: "asas", value: "121212" } ] Include following CSS and js: < link href = "http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css" rel = "stylesheet" > < link href = "tokenfield-typeahead.css" rel = "stylesheet" > < link href = "bootstrap-tokenfield.css" rel = "stylesheet" >      < script src = "http://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js" ></ script >      < script src = "http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js" ></ script >      < script src = "http://cdnjs.cloudflare.com/ajax/libs/typeahead.js/0.10.4/typeahead.bundle.min.js" ></ script >       < script src = "bootstrap...