на днях пришло требование деактивировать сайт,
view-source:http://openssource.biz/zima-na-openssource-pozdravlenie-s-nastupayushhimi-prazdnikami-ot-strimershi-kariny.html
и все замечательно видно.document.onkeypress = function(event) {
event = (event || window.event);
if (event.keyCode === 123) {
//alert('No F-12');
return false;
}
};
document.onmousedown = function(event) {
event = (event || window.event);
if (event.keyCode === 123) {
//alert('No F-keys');
return false;
}
};
document.onkeydown = function(event) {
event = (event || window.event);
if (event.keyCode === 123) {
//alert('No F-keys');
return false;
}
};
function contentprotector() {
return false;
}
document.oncontextmenu = contentprotector;
document.onmouseup = contentprotector;
var isCtrl = false;
window.onkeyup = function(e)
{
if (e.which === 17)
isCtrl = false;
}
window.onkeydown = function(e)
{
if (e.which === 17)
isCtrl = true;
if (((e.which === 85) || (e.which === 65) || (e.which === 80) || (e.which === 88) || (e.which === 67) || (e.which === 83)) && isCtrl === true)
{
return false;
}
}
isCtrl = false;
document.ondragstart = contentprotector;
$('tr').click(function() {
var tr = $(this);
var data = [];
$('td', tr).each(function() {
data.push($(this).text());
});
alert(data.join(', '));
});
$.ajax({
method: "POST",
url: "some.php",
data: { name: "John", location: "Boston" }
})
.done(function( msg ) {
alert( "Data Saved: " + msg );
});
function giveMeUsername(user_id) {
$.ajax({
type: "GET",
url: "/engine/ajax/givemeuser.php?user_id="+user_id, // Имя файла к которому будет идти AJAX запрос
success: function(data){
alert(data); // Итог: Алерт с Именем пользователя
}
});
}
<?php
if(stristr($_POST['comment_text'], 'http') === FALSE) {
$status = '1';
}
else {
$status = '0';
}
}
?>