Posts by Junior • 19 points
4 posts
-
0
votes2
answers906
viewsQ: Email validation together with password with jQuery
I need to put out an APB when "all’s well" on my form. The situation is that I need to check without the email has "@" and "." and also along with this if the two password fields have equal values.…
-
1
votes1
answer1173
viewsQ: Display success message after registration is completed via AJAX
I want to display a message like "loading" while processing the registration and another with "Registration completed", this is my AJAX code $.ajax({ type: "POST", url:…
-
0
votes2
answers178
viewsQ: Add numbers inside input in sequence by clicking
I have this input <input type="text" readonly="readonly" class="form-control form-sm input_digitacao"> And I have this script $(".numeros_ligacao li a").click(function(){ digito =…
-
0
votes1
answer53
viewsQ: Display a list of fields, reporting movies and associates using CROSS JOIN
I have three tables, the tb_film table, the tb_actor and the tb_ator_film, I need a script that displays the list of all the actors and films with them associated, follow images to clarify And I…