daemon54
daemon54

Reputation: 1105

Debugging HTML and XML

I'm Trying to extract information from XML using XPath and put it into a page, But I'm not able to get a result. I would like to know whether there is any kind of debugger for HTML too so that I can track down the process and also the variables I have specified in the script. Thanks in advance.

Upvotes: 0

Views: 215

Answers (1)

bmargulies
bmargulies

Reputation: 100133

What you have here is Javascript code that is pulling data out of the DOM. As such, the debugger you need is a debugger for Javascript in your browser. For Firefox, that's Firebug. For Chrome, that's just the developer tools. For IE, well, I can't help you.

Upvotes: 1

Related Questions