Skip to content

Instantly share code, notes, and snippets.

View djpate's full-sized avatar

Christophe Verbinnen djpate

View GitHub Profile
<html lang="en">
<head>
<meta charset="utf-8" />
<title>jQuery UI Datepicker - Default functionality</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
disabled_days = ["8-30-2013","9-11-2013","9-10-2013"];
$( "#user" ).autocomplete({
source: {{routes.url_to('users', 'autocomplete')}},
minLength: 2,
select: function( event, ui ) {
$('#input_user').val(ui.item.value);
},
open: function() {
$( this ).removeClass( "ui-corner-all" ).addClass( "ui-corner-top" );
},
close: function() {