<form name="form1" id="form1" method="post" action="#" onsubmit="return checkForm()">
default: function(){}
options: function($slideElement, oldIndex, newIndex){ // your code here }
arguments:
$slideElement: jQuery element of the destination element
oldIndex: element index of the previous slide (before the transition)
newIndex: element index of the destination slide (after the transition)
var books = [];
var book1 = {};
book1.title = "My Book";
book1.pubYear = 1986;
book1.price = "50 UAH"
var book2 = {};
book2.title = "My Book 2";
book2.pubYear = 2012;
book2.price = "170 UAH"
books.push(book1);
books.push(book2);
//или for или books.forEach
for(var i=0; i<books.length; i++) {
var y = books[i];
console.log(y.title);
}
//берете нужный инпут (тут взят [7] для простоты) и запоминаете его значение
var currentVal = $("input").eq(7).attr("placeholder");
//потом магия по добавлению к currentVal единицы.
//Эту функцию придется определить, т.к. там строка типа "c2,3"
currentVal = addOne(currentVal);
//ну и потом присваиваем измененное значение
$("input").eq(7).attr("placeholder", currentVal);
var taxi = {
make: "Webville Motors",
model: "Taxi",
year: 1955,
color: "yellow",
passengers: 4,
convertible: false,
mileage: 281341
};
//здесь нет значения car. Здесь сказано, что то, что будет передано в функцию, внутри будет называться car.
//Важно помнить, что это не вызов функции, а только объявление ее
function prequal(car) {
if (car.mileage > 10000) {
return false;
} else if (car.year > 1960) {
return false;
}
return true;
}
//а вот здесь вызывается(!) функция и передается ей taxi
var worthALook = prequal(taxi);
if (worthALook) {
console.log("You gotta check out this " + taxi.make + " " + taxi.model);
} else {
console.log("You should really pass on the " + taxi.make + " " + taxi.model);
}
if (!($(".news__image-block").hasClass('open'))) {
$('.news__image').hover(function() {
$(this).children('.news__image-block').toggleClass('half-open');
$(this).parents('.news__item').children('.news__text').children('.news__text-bottom').children('.news__text-next').toggleClass('invert');
});
}
$('.news__image').hover(function() {
if (!($(".news__image-block").hasClass('open'))) {
$(this).children('.news__image-block').toggleClass('half-open');
$(this).parents('.news__item').children('.news__text').children('.news__text-bottom').children('.news__text-next').toggleClass('invert');
}
});