views:

49

answers:

2

Is it possible to update a xml file using jQuery? Or do i have to use server side scripting to achieve it?

Thank You

+1  A: 

You'll need to use some kind of server-side scripting (PHP, ASP.NET, ColdFusion, etc.) to edit any files on disk.

Tim S. Van Haren
A: 

yes manipulate your xml as you would manipulate your DOM

var jqXML = $(xmlSource);
jqXML.find(yourNodeName).attr(attribute,value);

for example

then repost your data to the server

dvhh