JavaScript
- 26 ответов
- 0 вопросов
23
Вклад в тег
document.addEventListener("click", (e) => {
let currentId = "";
if (e.target.classList.value === "playing-field-item") {
currentId = e.target.id;
}
console.log(currentId);
})
$(function()
$(document).ready(function() { ... });
(function($) {
.......
})
(jQuery);
function hello() {
console.log("HELLO WORLD")
}
hello();
(function() {
console.log("HELLO WORLD")
})()
руководства по верстке