1
Good afternoon.
I have a question. I used the load (jquery) command to load a page, and within it there is a form. When this form is processed, it should change the div that is in the same load hierarchy.
I’m trying to do like this:
$("#conteudo").on('form[name=formCadastraQuadra]').submit(function(){
//como eu acesso os elements inputs deste cara?
});
Thank you very much
Forehead with
$("#conteudo").on('submit', 'form[name=formCadastraQuadra]', function(){
– Sergio
Thank you very much. But how do I access the Elements with (each)
$(this).each('input', function(i, obj){
 alert(obj);
 });
– Fabiano Carboni
What elements? form? elements can be clearer?
– Sergio
If I know what you mean
$(this).find('input').each(...
– Sergio