Q&A Discussões
String Operators
1 Voto
2 RespostasSomeone help
0 Voto
3 RespostasClass/var
0 Voto
5 RespostasGuesses
1 Voto
3 RespostasVariable nests
8 Votos
2 RespostasWhat is wrong with this code?
-
-
<!Doctype html>
<head>
</head>
<body>
<form>
<input type="text" id="input">
</form>
<button type="button" id="button">Click here</button>
<script>
var input=document.getElementById("input");
var button=document.getElementById("button");
function display() {
if (button.clicked == true) {
console.log("input");
}
};
display();
</script>
</body>
0 Voto
7 Respostas