JSFiddle - React, Tailwind, and code Playground
HTML
xx<div id="chatdiv" style="display: none;">Chat Link</div>zz
JavaScript
$.get("http://ipinfo.io", function(response) {
console.log(response.ip, response.country);
if ( (response.country == null) || (response.country == "US") ) {
$("#chatdiv").show();
}
}, "jsonp");