[jQuery] XML Parsing, am I doing it wrong?

2009-10-13 Thread Jim
I have an XML data structure being returned from my server on an AJAX call (excerpt here): - - - Content item 'AGR_REPT_FINAL' was not successfully checked in. The content item is not currently checked out. csIsNotCheckedOutError:DARS_

[jQuery] XML parsing

2009-04-22 Thread cindy
Following is my XML file: F T I want to get the first state out, which is F. I use var state = $("state",kj).text(); I got FT back. How can I get only F back? Thanks! Cindy

[jQuery] xml parsing

2009-03-11 Thread koolkat
I have been reading through the group but I can't find exactly what I am looking for. I am using jquery get to process an xml file and am wonder about a few things. 1. How do I get the function to use the data I pass in, in this case name:"yyy" 2. the code below works in FF but IE7 returns a blank

[jQuery] Re: JQuery XML parsing is not working in IE?

2009-03-09 Thread Samuel
Yes I tried JSON laterly, and it works so greatly. On Fri, Feb 20, 2009 at 5:30 AM, akzhan wrote: > > How to reproduce this problem? > > By the way, Json format is more attractive way for data exchange (Json > included into core or additional modules of all known Web server > platforms)... > >

[jQuery] Re: JQuery XML parsing is not working in IE?

2009-02-20 Thread akzhan
How to reproduce this problem? By the way, Json format is more attractive way for data exchange (Json included into core or additional modules of all known Web server platforms)... On 20 фев, 12:02, Samuel wrote: > Is there any solutions for this? I have a similar problem. > > I've added mimety

[jQuery] Re: JQuery XML parsing is not working in IE?

2009-02-20 Thread Samuel
Is there any solutions for this? I have a similar problem. I've added mimetype="text/xml" in Django's views.py It works well on firefox, opera and chrome, but not working on all IE browsers, and the webkit kerneled browser on adroid. Thanks for your helps. On Sat, Feb 14, 2009 at 9:26 PM, cindy

[jQuery] JQuery XML parsing is not working in IE?

2009-02-14 Thread cindy
Hi, all, I have used following code to parse XML file, it works very well for firefox, but not for IE. Can any one told me why and solution ? Thanks! (rXml).find("wired_port").each(function() { var o=new Object(); o.port=$("number",

[jQuery] xml parsing useing jquery not working in IE7

2008-10-18 Thread sachin
below example is working in FF but not working in IE. Pls somebody help me. //xml file //js file // File: readXML.js // Start function when DOM has completely loaded $(document).ready(function(){ // Open the students.xml file $.get("incentives.xml",{},function(xml){

[jQuery] XML Parsing Question...

2008-10-04 Thread KenLG
For much of my app, I'm doing an Ajax hit to the server to grab XML. That works great. But, in some cases, I've got too many pieces of data (unrelated) that I need to pull so I'm trying to do a simple passthrough from the server side (I'm using ASP.Net). So, I'll either output from SQL Server or

[jQuery] XML Parsing: Getting a node value

2008-07-12 Thread Arun Kumar
I have the following XML File: 10 JSHDHSKJAD I want to get the tag os:TestTag value. I am using the following query (This XML is in xmlDoc variable). $("A", xmlDoc).find("os:TestTag").text(); The above query is not working, So I tried the below one: $("A", xmlDoc).find("TestTag").tex

[jQuery] XML parsing issue with facebox

2008-06-23 Thread churock
Here is my issue. I am dynamically generating XML data that is to appear in the facebox as a means of displaying additional information about a product if so desired by the customer. My problem is this: I have set up the various etc., etc., which break down the xml data into divs and text ta

[jQuery] xml parsing error

2008-06-17 Thread koko
Hello, I have a problem and I googled it for the solution but it seems that there is no solution for it !! I used $.get and $.ajax but the same problem could you take a look at the source just open index.html in IE and FF and see the difference also take a look at the comments in parse.js

[jQuery] XML parsing tagnames with swedish characters

2008-06-09 Thread Zheele
I'm trying to read an XML file from an external host with jQuery ajax functions and parse it but I'm running into problems since the XML- file has tags defined with swedish characters (åäö). What I try to do is use a selector simmilar to: $('basetag:has(TagWithSwedishSigns:contains(Value))', xml_

[jQuery] xml parsing - what am i doing wrong?

2008-01-21 Thread Alexandre Plennevaux
Hello, i'm loading a bit of xml and i'm trying to use the loaded data, but i 'm unsuccessful traversing it so far. Can you tell me what i'm doing wrong? here is the loading code: datascape.getAllAnchors = function(){ $.get("projects/datascapes.xml",function(data){ return $(data);

[jQuery] xml parsing bug or feature?

2007-12-06 Thread Equand
when in the root node of xml file i have only one node with text in it, when i parse this xml using jquery, i' am unable to get the included node... for example text when i try then $("item", "Data", xml).size() i will receive 0. why that happens? that's quite illogical...

[jQuery] jquery xml parsing issue

2007-10-01 Thread HelloGoodbye
hello dear jquery community. recently i've run into a really strange problem when parsing xml received via ajax; XMLstructure: ... the xml file is well structured as i've checked it a couple of times myself. now the code: $.ajax({type: "POST", url: loc

[jQuery] XML parsing problem

2007-07-05 Thread Linan
Hi everyone, I'm trying to build a tempalte engine based on jQuery. XML grammer is chosen as the flow controlling work. Naturally I want to use jQuery to parse XML doc, but the result is disappointing. For example: $('') it returns: [for, p, while, div] I went back to the source code and found