Skip to content

Instantly share code, notes, and snippets.

@clubeagn
Forked from jhowbhz/example_ajax.html
Created June 13, 2018 13:57
Show Gist options
  • Save clubeagn/7fe69404d97aa72b53b93b97da52e072 to your computer and use it in GitHub Desktop.
Save clubeagn/7fe69404d97aa72b53b93b97da52e072 to your computer and use it in GitHub Desktop.
example_ajax
<!DOCTYPE html>
<html>
<title> TESTE AJAX </title>
<body>
<button>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>
$("button").click(function(){
$.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