0
votes
0answers
6 views

Issue grabbing xml data from url with jquery

Ok, from what I understand, what I am trying to accomplish here is SUPER simple, basically I have constucted a search result out of a url string with the youtube API. If you browse to the url, you can ...
0
votes
1answer
21 views

Get xml document in Chrome via JS

After I open an Xml document in Chrome, I want to get the XML source in console via js. But document object seems to be an HTML document. So How can I get the real Xml and is there any way to judge ...
2
votes
2answers
47 views

How to append XML content to an HTML element as if it were HTML and apply CSS styles?

I have an XML file called 'layouts.xml' that looks like this: <?xml version="1.0" encoding="utf-8" ?> <layouts> <layout id="layoutA"> <div class="layout typeA"> ...
1
vote
1answer
25 views

Why does the childNodes array have and inaccurate number of items

As you can see from the image below, the childNodes array has 13 item. But clearly the "book" element has only 6 childNodes. Why is this inaccurate?
0
votes
0answers
9 views

Write XML and view XML based on user cookie

I'm trying to have this script write XML based on a username cookie, so it knows which XML document to access. Here it is: { var username = getCookie("username"); // another script defines getCookie ...
0
votes
1answer
19 views

When previewing XML in browser, I only want to see certain items using XSL

I want XSL to output only the first PRODUCT_IMAGE_FILE node from the first ITEM node in each PRODUCT/PRODUCT_IMAGES node into a simple list that you'd find in notepad. I've been trying to get this to ...
0
votes
1answer
19 views

How to avoid breaking API consumers when underlying protocol changes? [closed]

I have a bunch of servers (which I have no control over) with an XML-based API (no control here either) which doesn't guarantee complete backwards compatibility across versions, although the data ...
0
votes
0answers
22 views

Create XML file based on Input values

So, I need a script that takes All the form data in the URL and creates, or changes the existing nodes of an XML File. I have done some research and found this: if (window.XMLHttpRequest) { // ...
0
votes
0answers
20 views

Jquery - How to send XML file back to server

Firstly, I'm sorry my skills in Jquery are no good, however I've searched google for days but i can't seem to find anything to help me with this issue in passing an XML file from Jquery back to the ...
0
votes
2answers
45 views

Get XML into JavaScript Array, then get the values and write them

I've been looking around for a while and have found things close to but not what I'm looking for. I'm try to take this XML: <?xml version="1.0"?> <document name="New Document"> ...
0
votes
1answer
32 views

Avoid duplicating namespaces during xml serialization using javascript

The following code var ns1 = 'hello:world1', doc = document.implementation.createDocument('nsdoc', 'doc', null), outer = doc.createElement('outer'), s = new XMLSerializer(), elm; ...
1
vote
1answer
11 views

How to iterate data output from DataSchema XML

YUI().use("datatype-xml", "dataschema-xml", function(Y) { var dataIn = Y.DataType.XML.parse(xmlData); schema = { resultListLocator: "song", resultFields: [{key:"title"}, ...
-1
votes
1answer
38 views

How do I access XML Elements using Javascript? [closed]

I have an XML with testcases. Each testcase has a different number of teststeps. As I run through my tests, I set the status attribute of the teststep Eleemnt to passed or fails. Now I would like to ...
0
votes
1answer
47 views

Serving a File to javascript [duplicate]

I am required to allow a user to view a file in javascript, but not to able to download the file through a direct link. I understand that using htaccess and changing the permissions will not allow ...
0
votes
1answer
41 views

Is there a DOM or CSS property for height or width that XML objects honor

I am in the process of manipulating the height and width of xml elements in an SVG file. It seems the only way to do this is to alter the height and width attributes. This is because the CSS & DOM ...
0
votes
1answer
23 views

How can a Wordpress feed be displayed on another site using jQuery?

I've played with a few snippets I found, as well as the somewhat old plugin jFeed (which never worked for me at all). I am in need of displaying Wordpress posts, WP 3.5.1, in a content slider on ...
0
votes
0answers
39 views

how to output and download html form data to xml through javascript

I want to convert html form data to xml file through javascript code. Now this xml file can be downloaded without server side interaction. for this I found solution on stackoverflow at How to output ...
-3
votes
1answer
56 views

how to add greater than,less than to a tag in xml file? as a sample <tag>&lt;mark&gt;</tag>

when i'm trying to do what i wrote in title, the loading of xml Failed. without those "<",">" the file loaded to the html with javascript great without any problems. i saw how w3c told to do ...
-1
votes
2answers
27 views

Looping xml file prints out only last node

I have a function that convert from database to an xml file, im reading the file with a JavaScript and the output of the xml is correct. the problem tough is when im trying to loop some rows, then it ...
1
vote
1answer
28 views

How do I convert this piece of XML into a javascript collection?

I'd like to convert XML that looks like this: <products> <product> <Name>Bill</Name> <ID>1</ID> <Age>19</Age> </product> ...
0
votes
1answer
26 views

google maps xml markers

I have the following code stored in a 'genxml.php' that generates markers on google maps. The file is called from another file 'mobileInterface.php'. If I add another marker location in the database ...
-3
votes
1answer
43 views

Learning how to use http requests and javascript [closed]

Say I have this request, GET /api/pollstar.asmx/functionHere?parameter=value&parameter=value HTTP/1.1 Host: data.pollstar.com I have tested this with the Postman client and know that it returns ...
-1
votes
2answers
38 views

Unique AJAX Approach [closed]

I'm rebuilding the website for my fraternity and I've gotten to the brothers section. Right now, I have a link for each brother's name and when a name is clicked on, a hidden div is shown that looks ...
-1
votes
0answers
31 views

Retrieving rest XML and parsing it using javascript

My problem is that I have a database which stores various information. All of the data can be accessed through REST and will provide an XML response. I have been trying to develop a test HTML page ...
1
vote
1answer
48 views

value is match with xml element then return all there sibling attribute value.

i am try to get all attribute value if attribute value in my xml file. i am try this xpath:- var xPath = '//*[local-name() = "dist_region" and ' + ' ...
0
votes
1answer
39 views

SlickGrid with AJAX sync to XML page

I'm using an implementation of Slickgrid, and it works like a charm. The Grid is displaying data from a DataView (so that it can be filtered, I haven't implemented editing yet), which is filled with ...
0
votes
2answers
34 views

Using XML to populate an HTML page based on user defined options

I have a list of products that I want to return to the user depending on their selection from 3 options. The kicker is that this has to be a static page with nothing more fancy than javascript, HTML ...
0
votes
1answer
20 views

In XML, can you start a CDATA tag with &lt;?

My javascript application interfaces with another and obtains some XML which contains CDATA. Normally when dealing with CDATA I am aware it should look something similar to this: However I am ...
1
vote
4answers
29 views

Error in getting data from xml using AJAX

I am using AJAX for reading data from external xml file but it is giving error "Invalid argument" I am using IE 8 PFB the code: var xhr; xhr = new XMLHttpRequest(); ...
0
votes
0answers
22 views

To find javascript which will use to change svg tags attributes' value into php file

I am searching javascript to change attributes of svg's path tags which are grouped. I have svg code (some path tags which are grouped). I want to add .svg file into php file through method. How I ...
0
votes
1answer
27 views

Query two xml files with javascript function

I am working on a project and am struggling given the restrictions. I would normally handle this sort of thing with PHP but the project needs to run on a server that is limited, I need to accomplish ...
0
votes
0answers
40 views

Jquery error in wordpress

I have a problem with wordpress, I created a function with jquery to read an xml file, but not read the file for some unknown reason. URL: http://www.incakingdom.com/lista-de-paginas/machu-picchu/ The ...
0
votes
0answers
38 views

ajax http request status returning zero on mobile browsers only

I have been using this code for a long time successfully: function doXMLReq(url, data) { var req = false; if (window.XMLHttpRequest) { req = new XMLHttpRequest(); if ...
0
votes
2answers
37 views

XSL back button

I'm not an expert in this area. I did some searching but didn't find exactly what I'm looking for. Hopefully it's fairly simple. I'm working on a software control system that has a built-in web ...
0
votes
1answer
34 views

Javascript compound graphs library

After a long search on the Internet, I didn't find a Javascript library which makes graphs imbricated (compound graphs). All the interesting libraries that I found are using Flash, and I don't want ...
0
votes
0answers
21 views

SmartClient code Assist in Aptana studio 3

I am using smartClient_60_days Evaluation. All has been working perfectly, but of recent i realised i greatly need intellisence and code Completion(Code Assist). I made some good such and i found out ...
0
votes
0answers
58 views

Get the url of xml with jquery

I have a button that gets the current URL, then that URL will be sought within the XML, this will return a URL1 to redirect. What's is the problem? Image of XML $(document).ready(function () { ...
0
votes
2answers
51 views

Access an XML value using jQuery

I have this XML <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> ...
0
votes
2answers
28 views

Extract complex URL from XML with JS or PHP

I am extracting data from a database using an API; the API returns data into an XML file. I am able to put the API return into an XML file on my server, using PHP (file_get_contents() and ...
0
votes
1answer
29 views

.NET javascript runtime with XML parsing/editing

I have found some javascript runtime for .NET like IronJS, Javascript .NET or Jurassic. However seems none of them support XML parsing/editing. There's any javascript engine for .NET that supports ...
0
votes
1answer
51 views

How can I download a XML #document generated by DOMparser?

Good morning. I have a webpage with a form that generates a XML Document with DOMparser(). That's the function to get the XML: function textToXML(text) { try { var xml = null; ...
0
votes
1answer
86 views

Invalid rule reference error when compiling Windows Speech Recognition Macros

Lately I have gotten interested in trying out some XML and Javascript with Windows Speech Recognition Macros. This is my first experience with both languages, but since I do have a small programming ...
0
votes
1answer
29 views

Sent xml string to controller with ajax in ASP.NET MVC 3

I need to sent xml string to my controller (ASP.NEt mVC 3) method on controller is like this [HttpPost, ValidateInput(false)] public ActionResult SetTherapyTemp(string xmlModel) { ...
0
votes
1answer
26 views

How to output all values of perticuler xml element from an xml string in javascript?

hi all i got a xml data as string variable. it has many sets of <item>...</item> I wonder how i can extract all data of <name>..</name> for all the <item> sets and ouput ...
0
votes
1answer
23 views

get child and subchild attribute value using ajax xpath and store in to variable

xml look like :- <childrens> <child_1 entity_id="1" value="Root Catalog" parent_id="0"> <child_2 entity_id="2" value="Navigate" parent_id="1"> <child_4 entity_id="4" ...
2
votes
1answer
66 views

Using window.open, document.open, and document.write to display XML (XML rendering gone)

This is related to another question, but is not a duplicate. It deals with a proposed solution that I have reached an impasse. I have the following code that reads an XML, makes changes, opens a ...
0
votes
1answer
41 views

Show xml in TextArea using jQuery

The following works in FireFox and Chrome, but not in IE - <html> <head> <title>test IE</title> <script src="http://code.jquery.com/jquery-latest.min.js" ...
0
votes
1answer
28 views

find xml attribute value using variable name

xml file:- <countries> <country code='af' phoneCode='93' name='Afghanistan' /> <country code='al' phoneCode='355' name='Albania' /> <country code='dz' phoneCode='213' ...
0
votes
1answer
56 views

JSON error request is not defined

When I do console.log(req.responsetext) i get [11:38:04.967] ReferenceError: req is not defined. But i define req as a new xml request on window load so I am kind of stumped. Is there a way that I ...
1
vote
1answer
56 views

convert css to xml with javascript

i want to convert some css like this: body { margin: 0 auto; padding: 10px 0; } #content { background: #ffffff; } into an xml structure like this: <class name='body'> <param ...

1 2 3 4 5 56