Parsing and sending XML
Parsing an XML string to a JS Object
<script src="https://cdnjs.cloudflare.com/ajax/libs/fast-xml-parser/4.3.2/fxparser.min.js" ></script>const xmlContent = atob({{data.base64}});
const parser = new XMLParser();
return parser.parse(xmlContent);Sending an XML string from UI Bakery
<script src="https://cdnjs.cloudflare.com/ajax/libs/fast-xml-parser/4.3.2/fxparser.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jstoxml.min.js"></script>Last updated
Was this helpful?