jquery - Show "add activity" on fullcalendar day hover -


i'm trying show "add activity" when hover on day in fullcalendar (month view). have used following code - , works in ie8. ideas how make work in ie8? flickers unpredictably.

$('.fc-day').hover(function(){     $(this).find('.fc-day-content').prepend("<span id='addtoggle'>add activity</span>"); }, function(){     $(this).find('#addtoggle').remove(); }); 


Comments

Popular posts from this blog

Change php variable from jquery value using ajax (same page) -

Pull out data related to my apps from Android Play Store and iOS App Store -

How can I fetch data from a web server in an android application? -