-
Notifications
You must be signed in to change notification settings - Fork 0
/
form.js
30 lines (23 loc) · 936 Bytes
/
form.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//Question-part
const questionElement = document.querySelector('[data-js="questionMessage"]');
const amountLeft = document.querySelector('[data-js="amountLeftQuestion"]');
const maxLength = questionElement.getAttribute("maxlength");
const updateAmountLeft = (value) => {
amountLeft.innerText = value;
};
updateAmountLeft(maxLength);
questionElement.addEventListener("input", () => {
updateAmountLeft(maxLength - questionElement.value.length);
});
//
//Answer-part
// const answerElement = document.querySelector('[data-js="questionMessage"]');
// const amountLeft = document.querySelector('[data-js="amountLeftQuestion"]');
// const maxLength = answerElement.getAttribute("maxlength");
// const updateAmountLeft = (value) => {
// amountLeft.innerText = value;
// };
// updateAmountLeft(maxLength);
// questionElement.addEventListener("input", () => {
// updateAmountLeft(maxLength - questionElement.value.length);
// });