[jQuery] XML manipulation

2009-06-23 Thread bigb
I'm having some real difficulty figuring out how to manipulate xml data with jquery. Here is my situation. I have a hidden TextArea that contains xml data, something like this: items item value='1' text='x'/item item value='2' text='y'/item /items So, let's say I want to remove the item

[jQuery] Re: XML manipulation

2009-06-23 Thread bigb
I don't have an option to remove it from the textarea at the moment. Is there a better way to storing and generating xml data on the fly? On Jun 23, 8:41 am, Liam Potter radioactiv...@gmail.com wrote: take it out of the textarea, right now it's not XML data but random text. bigb wrote: I'm

[jQuery] Re: XML manipulation

2009-06-23 Thread bigb
,                         success: function(xml) {                                 $(xml).find('|item[value='123']|').remove();                         }                 });}); | Like I said though, I've not worked with XML before. - Liam bigb wrote: I don't have an option to remove it from the textarea

[jQuery] [autocomplete] Manual request

2009-06-16 Thread bigb
Hello, Here is my situation. I have an autocomplete control on my page that is working perfectly. I wanted to mimic a drop down menu by placing an image just to the right of the text box. When a user clicks that drop down arrow image, I want the whole list to display below the textbox. So far, I