<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=1"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
html {
overflow-y: scroll;
}
function setheight(){
var clientHeight = document.body.clientHeight;
$('.hei').height(clientHeight);
}
$(document).ready(function() {
function setheight();
});
$(window).resize(function(){
function setheight();
});
$.cookie('cookie_name', 'cookie_value');
$.cookie('cookie_name');
$.cookie('cookie_name', null);
#hei {
height: 100vh; /* 100vh - 100% от высоты viewport(окна браузера) */
}
function setHeiHeight() {
$('#hei').css({
height: $(window).height() + 'px'
});
}
setHeiHeight(); // устанавливаем высоту окна при первой загрузке страницы
$(window).resize( setHeiHeight ); // обновляем при изменении размеров окна
// отправить текущему сокету сформировавшему запрос (туда откуда пришла)
socket.emit('message', "this is a test");
// отправить всем пользователям, включая отправителя
io.sockets.emit('message', "this is a test");
// отправить всем, кроме отправителя
socket.broadcast.emit('message', "this is a test");
// отправить всем клиентам в комнате (канале) 'game', кроме отправителя
socket.broadcast.to('game').emit('message', 'nice game');
// отправить всем клиентам в комнате (канале) 'game', включая отправителя
io.sockets.in('game').emit('message', 'cool game');
// отправить конкретному сокету, по socketid
io.sockets.socket(socketid).emit('message', 'for your eyes only');
Я зарабатываю, работая с CMS 1C-Bitrix
RewriteEngine On
RewriteCond %{REQUEST_URI} ! \.html$
RewriteCond %{REQUEST_URI} ! /$
RewriteRule ^(.*)$ $1.html