+ 1
JavaScript how do you make things events live (here's what I mean...
J.S - There' s an input called x, and a p element t called par, I need the par.innerHTML = x.value; But x.value won't appear on par.innerHTML, unless I have onclick event and I click it. I want to know if there is a way to do this: When I type inside x (input), the value of x immediately prints on par.innerHTML (without having to click or anything). Example this code: https://code.sololearn.com/WT6VPR21WLh0/?ref=app
5 Respostas
+ 2
input, oninput.
reference-https://www.w3schools.com/jsref/event_oninput.asp
https://code.sololearn.com/WY7a23OiF1pI/?ref=app
+ 2
There is an event for that, it's the onkeydown event:
element.onkeydown = ...
or
element.addEventListener("keydown", ...)
If you just print out its value instantly, it will not print the key you actually pressed. To avoid this, you can use setTimeout.
x.onkeydown = () => {
setTimeout(() => {
par.innerHTML = x.value;
}, 0);
}
+ 1
If the element won't appeared, what's the purpose of adding onclick to an invisible element?
+ 1
Calviղ , so when i click, it appears.
what i mean is, the x value is not gonna appear on par while im typing. i wanted x.value to appear on par while im typing -instead of typing first, then i click the button, then x.value is on par.
--
0
Ginfio that's is not onclick event trigger, onclick event is for mouse click triggering, that's why I wondered element not appeared why would we needed onclick an invisible element.
In your case, you can set input element with onmousedown or onpress events, it would be triggered rightly on the key pressed down.