Guest User

Untitled

a guest
Jan 16th, 2019
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. <form method="post">
  2. <div class="input-field col s12 l12">
  3. <input id="pesquisa" name="pesquisa" type="text">
  4. <label for="pesquisa">Pesquisar Acesso...</label>
  5. </div>
  6. </form>
  7.  
  8. <script>
  9. $("#pesquisa").keyup(function(){
  10. var busca = $("#pesquisa").val();
  11.  
  12. $.post('pesquisaAcesso.php', {busca: busca},function(data){
  13. $("#result").html(data);
  14. });
  15. });
  16.  
  17. </script>
Add Comment
Please, Sign In to add comment