JSFiddle - React, Tailwind, and code Playground

by Avi Algaly

HTML

<div id="myXml"></div>

JavaScript

$.ajax({
    type: "GET",
    url: "http://wishtest.silvertive.com/wws/col.aspx?o=cp&cid=1028",
    dataType: "xml"
    /////-----data: currentFilter 
}).success(function(dataXml) {
    // call Silvertive and tell it to render data
    debugger;
    $("#myXml").html(dataXml);
});
})