You can use a spin-off of a long polling technique.
Basically just set a setInterval function that will fire every 10 seconds. The callback function of that will be your ajax call. Make the ajax function check the value of a variable, presumably one that is a boolean representing whether or not the text has been confirmed.
setInterval(function() {
if(!condition) {
//ajax functionality again
}
}, 10*1000);
The reason why I have the !condition part is because I dont want the function to execute all the way if the condition has already come back true, thus confirming the text.
You should then kill the interval function too.