Posts by badCode • 56 points
2 posts
-
1
votes3
answers1026
viewsA: Query SQL, Always show record of a repeating field first
Try to use it like this: SELECT Numero_Processo Processo , Numero_Revisao Revisao , Titulo , Id , Data_Criacao FROM Qualidade_Insp_Inj_Processo WHERE Id = ( SELECT aux.id FROM…
-
3
votes3
answers657
viewsA: How to move to the next input using javascript?
I think that would be my darling. Hugs! $(document).ready(function () { $('#name').focus(); $(document).find('input').keypress(function (e) { if (e.which == 13) {//Enter key pressed…
javascriptanswered badCode 56