JSFiddle - React, Tailwind, and code Playground

by grant

JavaScript

var xml = "<root><stuff></stuff><stuff><stuffchild></stuffchild><stuffchild></stuffchild</stuff></root>";

function alertit(jqueryObject) {
    if (jqueryObject.length === 0) return;

    jqueryObject.each(function() {
        alert(this.nodeName.toLowerCase());
    });
    
    alertit(jqueryObject.children());
}

alertit($(xml));