Questions tagged [sarissa]

Sarissa is an ECMAScript library acting as a cross-browser wrapper for native XML APIs.

Sarissa is an ECMAScript library acting as a cross-browser wrapper for native XML APIs. More details: https://gist.github.com/fcoury/2432555

4 questions
2
votes
1 answer

IE11 Edge mode - Sarissa.js

My website is old, and now need to upgrade to support IE11 Edge mode. It works fine in the IE compatibility mode but get an error in edge mode. var xmlDoc = Sarissa.getDomDocument(); xmlDoc.async = false; xmlDoc.load("...."); Error: Object doesn't…
Yves
  • 43
  • 1
  • 7
0
votes
1 answer

What to use for cross-browser XML handling?

I haven't been updated for a while on the web development so bear with me. What are people using nowadays for XML handling in browsers? I can rember that Sarissa was hot some years ago. But today is jQuery that has taken over or something else? Or…
Irina
  • 1
0
votes
1 answer

How to make Sarissa use a DTD when parsing XML?

I am using Sarissa to convert a string of XML into a DOM document object. Everything is working except that Sarissa is completely ignoring my DTD. Deviations from the DTD rules are not noticed, nor do I see any messages about the DTD not being…
Charles Anderson
  • 19,321
  • 13
  • 57
  • 73
0
votes
1 answer

Add xml document element to html table

I using xml+xsl in browser and processing async pages in javascript, but can't add xml processed tr element to table tbody because row elements looks like plain text. I find some hack to fix it with copying innerHTML (convertChild function): var…
Kirill
  • 7,580
  • 6
  • 44
  • 95