answersLogoWhite

0

To manipulate an XML document in javascript, you need an XML parser. Today all browsers come with in-built parsers that can parse the XML document. The parser loads the document into your computer's memory. Once the document is loaded, its data can be manipulated using the DOM(Document Object Model). There is significant differences in implementation of Microsoft Browser based XML parser and the Mozilla browsers based XML parser.

User Avatar

Wiki User

14y ago

What else can I help you with?

Related Questions

How do you convert XML to C?

You will have to parse the xml, but that is time consuming when done by hand. The easiest and fastest method would be to use an xml tool that could parse it for you, like tinyxml, xerces or LiquidXml.


What is Dom in XML?

dom stands for document object model and is used to help parse xml documents.


How can i parse dynamic data in actionscript 2.0 to an xml file?

Not possible!!


What is XML Parsing?

Extensive MarkUp languageXML parsing is when you convert an XML document into an XML DOM object - which can then be manipulated with a JavaScript.


C parsing xml and deposit structure?

You can go with XLinq, XmlReader, XPathNavigator or even regular expressiont To parse C in xml. New methods also include using a code gen or parsing tool.


What does Ajax use for the processing that is done on the browser?

Javascript. AJAX stands for Asymmetric Javascript And XML


How do you create dynamic webpages with xml?

To create dynamic webpages with XML, you typically use XML as a data format alongside technologies like XSLT (Extensible Stylesheet Language Transformations) to transform the XML data into HTML for web presentation. JavaScript can also be utilized to fetch and manipulate XML data asynchronously using AJAX, allowing for real-time updates on the webpage without reloading. Additionally, server-side languages like PHP or Python can parse XML data to generate dynamic content before sending it to the client. Together, these techniques enable the creation of interactive and data-driven webpages.


Tell you about asynchronous JavaScript and XML?

I do not know in depth. But using the Asynchronous Javascript and XML HTTP Request one can easily access the concept of AJAX. simply ajax is an technique of many technologies such as Javascript, XMLhttprequest, css and dom. Take the new registration of E- mail id when you are a new user. You can suggest an user name by this technique.


What is the meaning of the name Ajax?

AJAX stands for Asynchronous JavaScript and XML.


How can I change document.myform.username.value to a remote HTML file.?

The solution here is to use AJAX to pull the contents of the remote file. You can parse the HTML using JavaScript to get the data you need from it.


How do you parse very large XML feeds into MySQL with PHP?

You will use an xml parser like simple xml. If you will focus on timeout/connection time out in curl and script time out in php is set to 0(no limit) it will help.


How do you connect javascript using php?

Any communication between Javascript code and PHP code needs to be instigated by the Javascript. This is because Javascript is a client side script and PHP is server side. The server can't force data to the browser; it can only reply to requests. The technique of using Javascript on the client side to talk to server side scripts is referred to as AJAX (Asynchronous Javascript And XML). There are several libraries available for simplifying it's usage, and many online tutorials.