mbarros

script.js

Mar 27th, 2012
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
jQuery 0.50 KB | None | 0 0
  1. $(document).ready(function() {
  2.     $('.autosuggest').keyup(function() {
  3.         var search_term = $(this).attr('value');
  4.        
  5.         $.post('./busca.php', {search_term:search_term}, function(data) {          
  6.                 var resultado_value = $(this).text();  
  7.         });        
  8.                
  9.         $.post('./busca2.php', {search_term:search_term}, function(data) {
  10.             $('.mensagem').hide().fadeIn().html(data);
  11.         });
  12.  
  13.         $.post('./busca3.php', {search_term:search_term}, function(data) {
  14.             $('.avatar').hide().fadeIn().html(data);
  15.         });
  16.     });
  17. });
Advertisement
Add Comment
Please, Sign In to add comment