Posts by Elihofni Lima • 1 point
2 posts
-
0
votes2
answers39
viewsA: The addeventlistener event is not listened to
Insert e.preventDefault(); right after opening the function scope. This command prevents the page from being redirected by the POST method of your form. buttonPress.addEventListener('click', (e)…
javascriptanswered Elihofni Lima 1 -
0
votes2
answers2506
viewsA: Change only hours, minutes, seconds of a Date object
// data: Data e hora original // horas: Horas que se deseja asicionar public Date adicionaHoras(Date data, int horas) { Calendar calendario = Calendar.getInstance(); // Cria um objeto de data…