カレンダーを非表示にするために、入力時にイベント ブラーを追加しようとしています。
カレンダーを表示するために使用しているプラグインは、次のeternicode/bootstrap-datepickerです。
ここにソースコードがありますhttp://jsfiddle.net/KLpq7/75/
var inputs = $('.datepicker').datepicker({
autoclose: true
});
inputs.on('blur', function () {
console.log($(this));
// I would like to hide just the date picker
//$(this).hide();
});