You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
396 B
JavaScript
10 lines
396 B
JavaScript
document.querySelector("form").addEventListener("submit", function () {
|
|
var answered = document.querySelector("[name='AnsweredAt']").val;
|
|
if (answered && !confirm('Tem a certeza que pretende atualizar a resposta anterior?')) {
|
|
e.preventDefault();
|
|
}
|
|
});
|
|
|
|
document.querySelector("[name='back']").addEventListener("click", function () {
|
|
window.history.back();
|
|
}); |