Advertisement
Guest User

Untitled

a guest
Dec 7th, 2011
398
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $('#buscatexto').keypress(function() {
  2.     $.ajax({
  3.         type: 'POST',
  4.         data: 'nome='+$('#buscatexto').val(), // Parametros enviados
  5.         url: '<?php echo $pagina; ?>',
  6.         success: function(retorno) {
  7.             $('#busca').html(retorno);
  8.         }
  9.     })
  10. });
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement