<button id="btnGetIpDetail">Получить данные</button>
<input id="txtIP" value="46.72.235.29" />
function readfile () {
$.ajax({
url: '../core/remote_ip.txt',
success: function(data) {
console.log(data); // Выведет содержимое файла в консоль
}
});
}