EvgenStor, ниже это не код!!! а ...
$(function() {
$.get("list.txt", function(data) {
function fn() {
[].forEach.call(document.querySelectorAll(".info"), function(elem) {
var content = elem.innerHTML;
data.replace(/^(.*?)\|(.*?)$/gm, function(a, b, c) {
content = content.replace(new RegExp("(^|\\s|\\b)(" + b.replace(/[\\\/()*+.?|]/g, "\\$1") + ")(\\.|\\s|\\b|&|$)", "igm"), "$1" + c + "$3")
});
elem.innerHTML = content
})
}
fn();
$("#page-more").on("click", "button", function() {
window.setTimeout(fn, 3000)
})
})
});