Skip to content

Instantly share code, notes, and snippets.

@jhowbhz
Forked from clubeagn/example_ajax2.html
Created June 13, 2018 15:01

Revisions

  1. AGN Proteção Veicular created this gist Jun 13, 2018.
    20 changes: 20 additions & 0 deletions example_ajax2.html
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,20 @@
    <!DOCTYPE html>
    <html>
    <title> TESTE AJAX </title>

    <body>
    <button onclick="nome_da_funcao()">CLIQUE AQUI</button>
    <div id="teste"> </div>
    </body>

    </html>

    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>

    <script>
    function nome_da_funcao(){
    $.post("pagina.php", function(data, status){
    $('#teste').html(data) // escreve o restorno dentro da div
    });
    };
    </script>