I am using Jquery Full Calendar.
I want to export table to excel in Full Calendar.
I tried below
var calendar = $('#calendar').attr("name");
alert(calendar);
window.open('data:application/vnd.ms-excel,' + x);
e.preventDefault();
However this did not work for me.I only get data with above javascript code and not all (data,css,classes,html etc.)
On http://fullcalendar.io/wiki/Support/ it says post your question on the StackOverflow fullcalendar tag.
That is why i ask question here.
I hope anybody can help me thanks.