$('.element').on('selectstart',function(e){
$(document).one('mouseup', function() {
if(window.getSelection().toString().length) {
console.log('select');
//тут ваш обработчик
}
});
})
var count = 0;
function send() {
count++;
$.ajax({
url: '...',
data: data,
dataType : 'html',
type: 'POST',
error: function(){ },
beforeSend: function(){ },
complete: function(){ },
success: function (data, textStatus) {
if(data == 'good'){
//получили желаемый ответ
}else{
if(count <= 10)
send(); //снова отправляем запрос если их меньше 10
else
alert('превышено кол-во запросов!');
}
},
});
}
send();
$(window).resize(function(){
if (window.matchMedia('(max-width: 350px)').matches) {
document.body.style.display = “none”;
} else {
document.body.style.display = “block”;
}
}
$(window).resize(function(){
var width = ...
if(width < 350) {
document.body.style.display = “none”
}
}
$('form').submit(function(e){
e.preventDefault();
data = new FormData(this);
xhr = new XMLHttpRequest();
xhr.open( 'POST', '/url', true );
xhr.onreadystatechange = function ( response ) {
if (xhr.readyState == XMLHttpRequest.DONE) {
console.log(xhr.responseText);
}
};
xhr.send( data );
});