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:

mockup calendar plugin

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

Popular posts from this blog

php - render data via PDO::FETCH_FUNC vs loop -

c# - Avoiding duplicate methods for Task and Task<T> -

javascript - Which segment of a polyline was clicked? -