$(function(){
$(".push2").click(function () {
$(this).text(function(i, text){
return text === "ЖМИ" ? "ЖМИ" : "ЕЩЕ РАЗ";
})
});
})
<button class="btn btn-bordered-white push2">Жми</button>
$(function(){
$(".push2").click(function () {
$(this).text(function(i, text){
if(text === "Жми"){
return text = "первый вариант";
}
else if(text === "первый вариант"){
return text = "второй вариант";
}
else{
return text = "какой то другой";
}
})
});
})