Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $(document).ready(function() {
- $('.autosuggest').keyup(function() {
- var search_term = $(this).attr('value');
- $.post('./busca.php', {search_term:search_term}, function(data) {
- var resultado_value = $(this).text();
- });
- $.post('./busca2.php', {search_term:search_term}, function(data) {
- $('.mensagem').hide().fadeIn().html(data);
- });
- $.post('./busca3.php', {search_term:search_term}, function(data) {
- $('.avatar').hide().fadeIn().html(data);
- });
- });
- });
Advertisement
Add Comment
Please, Sign In to add comment