alcatrazbr
5/16/2015 - 2:21 PM

jquery ajax submit form

jquery ajax submit form

       $("#frmCadastro").submit(function(){       		
		    $.ajax({ // create an AJAX call...
		        data: $(this).serialize(), // get the form data
		        type: $(this).attr('method'), // GET or POST
		        url: $(this).attr('action'), // the file to call
		        success: function(response) { // on success..
		        	$("#ModalProdutoDetalhe").modal("toggle");
		            // $('#produtolst').html(response); // update the DIV
		            $('#frmConsulta').submit();
		        },
		        error: function(){
		        }
		    });
		    return false;			
       });