JSFiddle - React, Tailwind, and code Playground

HTML

<div id="example-section39">    
    <div>twitter activity map test</div>
    <div id="div391"></div>
    <button id="btn392" type="button">Click</button>
</div>

JavaScript

$(document).ready(function (){
    $("#btn392").click(function(){
        
        $.ajax({
            type: 'GET',
            cache: true,
            data: "",
            url:  'http://vzw.glassfish.w2oservices.com:8080/rest_api_10/twitter/tag/verizon/volume',
            dataType: 'jsonp',
            json: 'json',
          crossDomain: true,          
          cache:false,             
            success: function(dataResponse, status, request) {
                console.log('success');                
            },
            error: function(jqXHR, textStatus, errorThrown) {
            	console.log(errorThrown);
        	}
         });
    });
});