Posts by Luís Otoni • 51 points
1 post
-
5
votes2
answers1321
viewsQ: What are the differences between "type=button" and "type=Submit" in an input?
I have a simple Javascript code to add a string to a list ul: JS: function init() { var botao = document.getElementById("addButton"); botao.onclick = handleButtonClick; } function…