function replaceOnAbsolute(){
var attrForReplace = ["src","href"];//В каких атрибутах менять на абсолютные ссылки
var curDir = window.location.href.match(/(.+\/).+\.?.+?/)[1];
$("*").each(function(i,e){
attrForReplace.map(function(el){
if($(e).attr(el))
if($(e).attr(el).search("^(https?)|(file)|(ftp)") == -1)
$(e).attr(el,curDir+$(e).attr(el));
});
});
}
include("./SxGeo.php");
$SxGeo = new SxGeo('SxGeoCity.dat');
if($SxGeo->get(get_ip())["city"]["name_ru"] == "Москва"){
//Что-то делаем
}
else{
//Делаем что-то другое
}
function get_ip()
{
if (!empty($_SERVER['HTTP_CLIENT_IP']))
{
$ip=$_SERVER['HTTP_CLIENT_IP'];
}
elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR']))
{
$ip=$_SERVER['HTTP_X_FORWARDED_FOR'];
}
else
{
$ip=$_SERVER['REMOTE_ADDR'];
}
return $ip;
}
переменная = переменная +
var a = 2;
var b = ++a;
alert(b)//3
var a = 2;
var b = a++;
alert(b);// 2
var tables = document.body.getElementsByTagName("table");
for(var i = 0; i < tables.length; i++){
var a = tables[i].getElementsByTagName("a");
for(var j = 0; j < a.length;j++)
a[j].classList.add("myclass");
}
$(".service__sect-content_accordeon_item:first-child p").addClass('active');
$($(".service__sect-content_accordeon_item")[0]).find("p").addClass('active');
$(function() {
$(".contact_form input[type=checkbox]").bind("change", function(e) {
if ($(this).is(':checked'))
$(this).parent().parent().find("input[type=tel]").removeAttr("required");
else
$(this).parent().parent().find("input[type=tel]").attr("required", true);
})
});