Bootstrap provide both libraries for date and for tags, I want to merge these so that user will select a multiple dates which shoul look like adding a tags.
Jquery for tag : -
$("#ContentPlaceHolder1_txtSkipDate").tagsinput({
maxTags: 15,
trimValue: true,
confirmKeys: [13],
allowDuplicates: false,
onTagExists: function (item, $tag) {
alert('Tag already exists')
$tag.hide.fadeIn();
}
});
Bootstrap date picker :-
$('.BootdateMulti').datepicker({
multidate: true,
format: 'mm/dd/yyyy'
});
Try this.