Select box it w/ autocomplete

test to see selectToAutocomplete can be incorporated with the selectboxit plugin.

by Peter Aad

HTML

<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
<script src="http://gregfranko.com/jquery.selectBoxIt.js/js/jquery.selectBoxIt.min.js"></script>
<link rel="stylesheet" href="http://gregfranko.com/jquery.selectBoxIt.js/css/jquery.selectboxit.css">
                <select name="test">
                   <option value="SelectBoxIt is:">SelectBoxIt is:</option>
                   <option value="a jQuery Plugin">a jQuery Plugin</option>
                   <option value="a Select Box Replacement">a Select Box Replacement</option>
                   <option value="a Stateful UI Widget">a Stateful UI Widget</option>
                </select>

JavaScript

// Calls the selectBoxIt method on your HTML select box
  $("select").selectBoxIt({

    // Uses the Twitter Bootstrap theme for the drop down
    theme: "bootstrap"

  });