JSFiddle - React, Tailwind, and code Playground

by James Hughes

JavaScript

$(function(){
    $.ajax({
        url: "http://policeapi2.rkh.co.uk/api/locate-neighbourhood?q=51.500617,-0.124629",
        dataType: "jsonp",
        username: "yaliw25",
        password: "d8513c986345a0dedcfae3a8e151cc0b",
        success: function(data){
             alert(JSON.stringify(data))
        },
        error: function(x,e){
            alert(e)                 
        }                 
    });        
});