chaning xml attributes through jquery is easy-peasy, just:
$(this).attr('name', 'hello');
but how can I add another tag into the file? I tried using append the JS dies silently.
Is there any way to do this?
Clarifications: this code is part of an extension to firefox, so don’t worry about saving into the user file system. Still append doesn’t work for xml documents yet I can change xml attribute values
The problem is that jQuery is creating the new node in the current document of the web page, so in result the node can’t be appended to a different XML Document. So the node must be created in the XML Document.
You can do this like so