Posts by José Ari Junior • 76 points
5 posts
-
0
votes1
answer26
viewsA: Input when changing class with JS does not go along with the form
You are overwriting label content, and this is including input: document.getElementById("flabel").innerHTML = "Keystore File Set!"; I suggest removing input from inside the label: <form…
-
2
votes2
answers286
viewsA: Compare the combination of the numeric keyboard with the user’s bcrypt
Since you didn’t answer @Andrei Coelho, I managed to do so: $arrComb = []; foreach ($request->btnNumber as $nr => $val) { $arrComb[$nr] = explode(",", $val); } $senha = $request->senha;…
-
1
votes2
answers286
viewsQ: Compare the combination of the numeric keyboard with the user’s bcrypt
Speak guys, I’m developing a numeric keyboard like the banks, in which the user selects a combination of numbers, but has to make the comparison with the password stored it, in bcrypt. The password…
-
1
votes2
answers53
viewsA: Enable button when last request is executed successfully
I managed using the tip of Juliohenrique97 with an adaptation. At the time we do not remember but then the little light lights up.. rsrsrs function calcularNotas() { var ultAluno = ""; var habilita…
-
1
votes2
answers53
viewsQ: Enable button when last request is executed successfully
Personal I am wanting to enable a button only when the last post request via Ajax is executed successfully. I have a table with several records with their respective information and ids. By clicking…