| Issue 683: | Tip not showing in IE8 | |
| 1 person starred this issue and may be notified of changes. | Back to list |
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
Status:
Done
|
|
| ► Sign in to add a comment |