Skip to content

Instantly share code, notes, and snippets.

@abennouna
Created May 8, 2013 18:37
Show Gist options
  • Save abennouna/5542558 to your computer and use it in GitHub Desktop.
Save abennouna/5542558 to your computer and use it in GitHub Desktop.
Le Lab by tellibus : selectToAutocomplete - http://tellibus.com/lab/selectToAutocomplete
<link rel="stylesheet" href="jquery-ui.css" type="text/css">
<select id="SelectToAutoComplete">
</select>
<script src="jquery.min.js"></script>
<script src="jquery-ui-autocomplete.js"></script>
<script src="jquery.select-to-autocomplete.min.js"></script>
<script type="text/javascript">
$(function() {
$("#SelectToAutoComplete").selectToAutocomplete({
position: { // Option ajoutée par rapport à la version officielle
my: "right top",
at: "right bottom"
}
});
});
</script>
@abennouna
Copy link
Author

La page officielle du fork se trouve sur http://tellibus.com/lab/selectToAutocomplete

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment