blob: ba1d77bc98524638d8ab862f3780ff28b402ab06 (
plain)
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
|
document.addEventListener('DOMContentLoaded', () => {
let btn = document.querySelector('.modalButton');
btn.click();
});
const kone = document.querySelector(".kone");
kone.addEventListener('input', () => {
let koneWordCount = document.querySelector(".kone").innerHTML.split(' ').length;
if (koneWordCount > 100)
moveOnEnable();
})
// If Done
function moveOnEnable(){
const btn = document.querySelector(".moveOn");
btn.disabled = false;
btn.onclick = () => location.href = "";
}
|