| Issue 1775: | Blink an event | |
| 1 person starred this issue and may be notified of changes. | Back to list |
I want to blink the event in the calendar I have change color.
var rdv=$('#calendar').fullCalendar( 'clientEvents');
for (i=0; i<=rdv.length-1; i++) {
if(rdv[i].id==id){
rdv[i].backgroundColor='red';
rdv[i].borderColor='red';
$('#calendar').fullCalendar('renderEvent', id );
setInterval(function(){
$(rdv[i]).fadeOut(900).delay(300).fadeIn(800);
},2200);
}
but there is no animation!! what should I do?
Aug 24, 2013
Project Member
#2
adamrs...@gmail.com
Status:
Invalid
|
|
| ► Sign in to add a comment |