Posts by sahusa • 21 points
4 posts
-
0
votes2
answers543
viewsA: Catch reCaptcha Value Google Ajax
Doing it this way will work: First we call the save function by sending the form. $('#btn_salvar').click(function() { salvar($("#form_salvar")[0]); }); As we received the form and sent in this way:…
-
0
votes1
answer92
viewsA: Composer - files autoload - does not work
I was able to solve the personal problem. Just need to load autoload, for that it is necessary to execute the command 'Composer dumpautoload' and ready. I thank those who tried to help me in some…
-
0
votes1
answer92
viewsQ: Composer - files autoload - does not work
My code in Composer.json looks like this { "name": "testesocial/vinicius", "description": "Login com facebook", "type": "project", "minimum-stability": "stable", "autoload": { "psr-4": { "Source\\":…
-
0
votes2
answers63
viewsQ: Allow only typing 123456 jquery
I am studying Jquery and I came across a logic activity, I need to allow the user to only type the 123456 keys in the input. html code: <h3>Teclado</h3> <span>Nome:</span>…