JSFiddle - React, Tailwind, and code Playground

by igos

HTML

<script src="https://rawgithub.com/jaubourg/jquery-jsonp/master/src/jquery.jsonp.js"></script>

JavaScript

function showMyIP(a) {
    alert(a.ip);
}

$.jsonp({
  url: "http://ip.jsontest.com/?callback=showMyIP",
  callbackParameter: "callback"
});