Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to create xml file with jquery

Is there a way to create xml file only with jquery/javascript ?

like image 889
flopifal Avatar asked Dec 28 '22 15:12

flopifal


1 Answers

Not with browser JavaScript, no. You will need some kind of server to write to the file system for you. You could always build the file in JS and then send it through AJAX for the server to write though.

like image 78
Alex Turpin Avatar answered Jan 05 '23 11:01

Alex Turpin