0

I have to create a .ics file with Javascript. I haven't got the possibility to use jquery. Is there a way to create this file? Thanks for your help

user3774099
  • 31
  • 1
  • 2

1 Answers1

0

You can use one of the methods described here to write a file in Javascript, then the content of the .ics file is up to you to determine. It's quite trivial since the ics format is simple. (complete RFC)

Community
  • 1
  • 1
Veve
  • 6,643
  • 5
  • 39
  • 58
  • As I read it I have to use jquery. This isn't possible. So it isn't possible only to use JS? – user3774099 Nov 17 '14 at 10:21
  • If you can use PHP, I suggest you to generate the ics in a PHP page, then link to this page with javasript (or directly in HTML) – Veve Nov 17 '14 at 10:38