Issue 683: Tip not showing in IE8
Status:  Done
Owner: ----
Closed:  Nov 2010
Reported by plipp...@gmail.com, Oct 24, 2010
Tooltip "tip" is not showing in IE8.   Works fine in FF and Safari.

I am using jQuery 1.4.3.

FullCalendar and QTip code is as follows:

$(document).ready(function () {

    $('#calendar').fullCalendar({
        header: {
            left: 'prev,next today',
            center: 'title',
            right: 'month,agendaWeek,agendaDay'
        },
        editable: false,
        events: '/Socrates.FullCalendar.axd',
        eventRender: function (event, element) {
            element.qtip({
                content: event.description,
                position: {
                    corner: {
                        tooltip: 'leftMiddle',
                        target: 'rightMiddle'
                    }
                },
                style: {
                    tip: true,
                    width: 200,
                    padding: 5,
                    background: '#e96f35',
                    color: 'white',
                    textAlign: 'left',
                    border: {
                      color: '#e96f35',
                      width: 2,
                      radius: 5
                    }
                 }
            });
        }
    });

});
Nov 21, 2010
Project Member #1 adamrs...@gmail.com
(No comment was entered for this change.)
Status: Done