fullcalendar - full callendar not showing in IE -


i making agenda in fullcallendar. works fine in browsers except ie. renders entries can see in source-code, not showing them in browser. have made website in expression engine. code use is:

<link href='{site_url}ontwerp/intranet/scripts/fullcalendar/fullcalendar.css' rel='stylesheet' /> <link href='{site_url}ontwerp/intranet/scripts/fullcalendar/fullcalendar.print.css' rel='stylesheet' media='print' /> <script src='{site_url}ontwerp/intranet/scripts/jquery-1.10.2.min.js'></script> <script src='{site_url}ontwerp/intranet/scripts/jquery-ui-1.10.3.custom.min.js'>  </script> <script src='{site_url}ontwerp/intranet/scripts/fullcalendar/fullcalendar.min.js'></script>  <script>   $(document).ready(function() {      var date = new date();     var d = date.getdate();     var m = date.getmonth();     var y = date.getfullyear();      $('#calendar').fullcalendar({         editable: true,         events: [             {embed="intern/agenda_data"}         ]     });  });  </script> 

the embed/agenda_data:

{exp:channel:entries channel="agenda" show_future_entries="yes" show_expired="yes" dynamic="off" limit="99999"} {     title: '{title}',     start  : '{entry_date format="%y-%m-%d %h:%i"}',     end : '{expiration_date format="%y-%m-%d %h:%i"}',      {if agenda_categorie=="vakantie"}color: '#f5a320'{/if}     {if agenda_categorie=="events vb"}color: '#c03d09'{/if}     {if agenda_categorie=="betaalperiode"}color: '#5f781c'{/if}     {if agenda_categorie=="decoratie"}color: '#186490'{/if} }, {/exp:channel:entries} 

it great if there can help.


Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -