How do I make an Ajax request without uBlock Origin flagging it?
20:24 31 Jul 2018
$.ajax({
    url: 'https://api.ipify.org',
    success: function(data){
        // alert(data);
        document.getElementById("ip").innerHTML = "Your IP is: " + data;
    }
})

It's pretty mundane code; just something to test if I can do more with custom HTML editing on my site; but I'm genuinely curious as to why this fails with uBlock enabled. It works fine with IE, Edge, Android Chrome, and desktop Chrome with uBlock disabled.

javascript jquery ajax ublock-origin