Posts by Cassiano • 21 points
1 post
-
2
votes1
answer19
viewsQ: In jQuery, how can I make a selection of an element using "this", inside one I’m already selecting
I tried to do so: $(document).ready(function(){ $("#formulario").submit(function(){ //Esse trecho não funciona $(this "input").each(function(){}); }); });…