$(function(){
$(".push2").click(function () {
$(this).text(function(i, text){
if(text === "Жми"){
return text = "первый вариант";
}
else if(text === "первый вариант"){
return text = "второй вариант";
}
else{
return text = "какой то другой";
}
})
});
})
если до этого там не было
var getSelectedText = function() {
var text = '';
if (window.getSelection) {
text = window.getSelection().toString();
} else if (document.selection) {
text = document.selection.createRange().text;
}
return text;
};
$('.класс у которого происходит выделение').on('mouseup', function(){
var text = getSelectedText();
if (text != ''){
alert('действие при выделении');
}
});