javascript - Popover a date string and show it on a calendar -
i have little info box on site use several popover show detailed information selection. example have string name , popover picture of person.
now have string date , want show date on calendar on popover.
i have little mockup shows want:
i searched lot on google find plugin not found anything.
does know such jquery/ javascript plugin looking for?
thanks!
if using bootstrap datepicker, can assign span elements events open datepicker control.
like this:
html
<span class="adate">1/1/2014</span>
javascript
$('.adate').datepicker();
with that, can bind events need (click, hover, etc)
Comments
Post a Comment