Re: [jQuery] Re: XML Writing

2009-11-17 Thread mufti ali
Is the xml file can be saved as a file? or just change on the fly? On Tue, Nov 17, 2009 at 9:21 PM, g...@iec wrote: > Here is code : > > var xml = {xml content}; > > $(xml).find('{nodename}').text({changed value}); > > This code works fine. > And content should be proper xml and not string. > >

[jQuery] Re: XML Writing

2009-11-17 Thread g...@iec
Here is code : var xml = {xml content}; $(xml).find('{nodename}').text({changed value}); This code works fine. And content should be proper xml and not string. On Nov 16, 12:39 pm, Shane wrote: > Hey guys, > > Is it possible to use jQuery to write to XML nodes for example I have: > >      a >

Re: [jQuery] Re: XML Writing

2009-11-17 Thread mufti ali
Nice idea, if this can implemented On Tue, Nov 17, 2009 at 4:41 PM, Peter wrote: > > $(function(){ >        $('settings').find('type').text("b"); > }); > > > >     a > > > You mean that? > > where is your xml? > get by ajax? > inpage? > > On Nov 16, 3:39 pm, Shane wrote: >> Hey guys, >> >> I

[jQuery] Re: XML Writing

2009-11-17 Thread Peter
$(function(){ $('settings').find('type').text("b"); }); a You mean that? where is your xml? get by ajax? inpage? On Nov 16, 3:39 pm, Shane wrote: > Hey guys, > > Is it possible to use jQuery to write to XML nodes for example I have: > >      a > > > I want to do something li