var previousText = null; function foo() { var currentText = $(".showText").text(); if (previousText == currentText) { $(".showText").html("same text"); } previousText = currentText; }