JSFiddle - React, Tailwind, and code Playground

HTML

<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.0/jquery.js"></script>

JavaScript

$.ajax({
        url: "https://campusdata.uark.edu/api/buses?callback=?&routeIds=8",
     
        // The name of the callback parameter
        jsonp: "callback",
     
        // Tell jQuery we're expecting JSONP
        dataType: "jsonp",
        
        data: {},
     
        // Work with the response
        success: function( response ) {
            console.log( response ); // server response
        }
    });