JSFiddle - React, Tailwind, and code Playground

by SchmalzyB

HTML

<button id="getData">Get Data</button>

JavaScript

$('#getData').click(function(){
    $.ajax({
      type:     "GET",
      url:      "http://co-web-947.na.plexus.com:8088/api/AD/SearchForUsersByFullName/Lincol Bollschweiler",
      dataType: "jsonp",
      success: function(data){
        console.log(data);
      }
    });
});