JSFiddle - React, Tailwind, and code Playground

JavaScript

$(document).ready(function(){

      var title = "The Shining";
      var url = "http://api.rottentomatoes.com/api/public/v1.0/movies.json?q="+title+"&apikey=ng6gbx7vdpwmyfwd7vp5g799";

    $.ajax(url,{
        dataType: "jsonp",
        success: function(data) {
            document.write(data.total);
        }
    });

});