简体   繁体   中英

FullCalendar.js show title tags when hovering an event?

I was looking in the documentation and didn't see anything regarding display of a title tag when hovering an event displayed on a calendar event using the fullcalendar.js scripts. Maybe that's not covered int he documentation because it's a standard function but I'm not seeing any tricks on implementing that.

If you want the fancy jQuery-UI toolips on your events, try doing this.

$('#calendar').fullCalendar({
...
    eventRender: function(event, element) {
        element
            .attr('title', 'foo')
            .tooltip();
    },
...
});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM