// Находим элемент формы, которую надо отправить.
// Вместо form можно указать класс, id и т.п.
const btn = document.querySelector('form');
// вешаем слушатель
btn.addEventListener('submit', formSend);
// куки будет удалено через 1 час
document.cookie = "user=John; max-age=3600";
Возвращает объект типа NodeList, содержащий все найденные элементы в том порядке, в котором они находятся в документе.
var text = metal[0].innerText
$('#step01').on("click", function(){
$('#section3').empty();
$('#section3').load('info.html #block01 > *');
})
$('#step01').live("click", function(){
$('#section3').empty();
$('#section3').load('info.html #block01 > *');
})
var $j = jQuery.noConflict();
$j(document).ready(function() {
$j('ul.tabs1 li').css('cursor', 'pointer');
$j('ul.tabs1 li').click(function(){
var thisClass = this.className.slice(0,2);
$j('div.t1').hide();
$j('div.t2').hide();
$j('div.t3').hide();
$j('div.t4').hide();
$j('div.' + thisClass).show();
$j('ul.tabs1 li').removeClass('tab-current');
$j(this).addClass('tab-current');
});
});
$j( document ).ready(function() {
$j(":input[type=button]","#searchform").click(function() {
$j(this).closest('form').find(':input','option:selected')
.not(':button, :submit, :reset, :hidden')
.val('')
.removeAttr('checked')
.removeAttr('selected');
});
});
console.log(x);//undefined
console.log(x);//undefined
console.log(x);//undefined
console.log(x);//undefined
console.log(x);//undefined
var x = 5;
console.log(x);//5
console.log(x);//5
console.log(x);//5
console.log(x);//5
console.log(x);//5
var x = 5;
function resizeRock() {
document.getElementById('rockimg').style.height =
((document.body.clientHeight - 100) * 0.9)+"px";
}
//Отображение списка "Производители"
$query = 'SELECT distinct(Proizv) FROM table1 WHERE Proizv <> "" ORDER BY Proizv ASC';
$Proizvod = mysql_query ($query) or die(mysql_error());
//Выборка по Производителю, но что-то не работает.
if(isset($_POST['maker'])){
$fam = "SELECT * FROM table1 WHERE Proizv ='".mysql_real_escape_string($_POST['maker'])."'";
$fam2 = mysql_query($fam)or die(mysql_error());
}