Skip to content

Instantly share code, notes, and snippets.

@clubeagn
Created June 13, 2018 14:59
Show Gist options
  • Save clubeagn/493b50de9e4a3aede43b1772eb60bd48 to your computer and use it in GitHub Desktop.
Save clubeagn/493b50de9e4a3aede43b1772eb60bd48 to your computer and use it in GitHub Desktop.
<!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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment