Is there any way in JavaScript by which I can call a function when the value of a paragraph tag is changed.
Overview:
HTML:
<p id="timer">00:00</p>
<button onclick="change()">My Button</button>
JS:
function change() {
document.getElementById("timer").innerHTML = "00:01";
}
function hello() {
alert("Hello");
}
I want to alert("Hello") when the value of paragraph is changed.
Something like a continuous function checking for a change in the value of paragraph.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…