This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
list($class) = explode('?', $_SERVER['REQUEST_URI']); | |
$class = str_replace(array('/', '.php'), '', $class); | |
?> | |
<?php echo $class ?> | |
//////////////////// | |
$url = explode('/', $_SERVER['REQUEST_URI']); | |
$dir = $url[1] ? $url[1] : 'home'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var resetForms = function() { | |
for (i = 0; i < $jsForm.length; i++) { | |
$jsForm[i].reset(); | |
} | |
} | |
resetForms(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.el').each(function () { | |
if($.trim($(this).html())==='') { | |
$(this).detach(); | |
} | |
else { | |
$(this).addClass(); | |
} | |
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const query = window.matchMedia('(min-width: 1200px)'); | |
query.onchange = (evt) => { | |
if(query.matches) { | |
} | |
}; | |
query.onchange(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(window).resize(function() { | |
}).trigger("resize"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="https://api-maps.yandex.ru/2.1/?lang=ru_RU" type="text/javascript"></script> | |
<script> | |
ymaps.ready(function() { | |
var hpMap = new ymaps.Map('h-map', { | |
center: [55.9924852, 38.3717429], | |
zoom: 7, | |
controls: ['zoomControl'] | |
}), | |
myPlacemark = new ymaps.Placemark(hpMap.getCenter(), { | |
balloonContent: '142432, Россия, Московская обл., г. Черноголовка, пр. 1-й, д. 4, ком. 215', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<IfModule mod_rewrite.c> | |
RewriteEngine On | |
RewriteCond %{HTTP_ACCEPT} image/webp | |
RewriteCond %{REQUEST_URI} (?i)(.*)(\.jpe?g|\.png)$ | |
RewriteCond %{DOCUMENT_ROOT}%1.webp -f | |
RewriteRule (?i)(.*)(\.jpe?g|\.png)$ %1\.webp [L,T=image/webp,R] | |
</IfModule> | |
<IfModule mod_headers.c> | |
Header append Vary Accept env=REDIRECT_accept |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<meta http-equiv="cache-control" content="no-cache"> | |
<meta http-equiv="expires" content="0"> | |
header('Expires: Sat, 03 Aug 2013 00:00:00 GMT'); | |
header('Last-Modified: ' . gmdate( 'D, d M Y H:i:s') . ' GMT'); | |
header('Cache-Control: no-store, no-cache, must-revalidate'); | |
header('Cache-Control: post-check=0, pre-check=0', false); | |
header('Pragma: no-cache'); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
?v=<?php echo date('dmYHis'); ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function( $ ){ | |
$(function() { | |
$('.rf').each(function(){ | |
// Объявляем переменные (форма и кнопка отправки) | |
var form = $(this), | |
btn = form.find('.btn_submit'); | |
// Добавляем каждому проверяемому полю, указание что поле пустое |