$_SERVER['HTTPS'] = 'on';
define('FORCE_SSL_ADMIN', true);
define('FORCE_SSL_LOGIN', true);
if (strpos($_SERVER['HTTP_X_FORWARDED_PROTO'], 'https') !== false)
$_SERVER['HTTPS']='on';
<link rel="stylesheet" href="css/2.css">
или <link rel="stylesheet" href="./css/2.css">
в случае открытия html из папки локально. Это указывает на путь относительно файла который открыт.<link rel="stylesheet" href="/css/2.css">
тем самым обозначив, что даже если html файлы будут в другой директории, css всегда будет в папке /css начиная от корня сайта. //<![CDATA[
(function($){
$.fn.preload = function() {
this.each(function(){
$('<img/>')[0].src = this;
});
if($(window).width() > 640) $(['/img/one.gif','/img/two.gif','/img/three.gif',]).preload();
}
})(jQuery);
//]]>
if ($(window).width()>640
$('<img/>')[0].src = this;
}
if ($(window).width()>640){
$('<img/>')[0].src = this;
}
<img class="youtube_preview" src="preview.png" alt="" data-link="http://youtube.com....." />
$('body').on('click', '.youtbe_preview', function(e){
//меняем iframe на preview
//меняем текущий preview на iframe
});
<form action="/some/example.htm">
<button type="submit">Ссылка-кнопка</button>
</form>