' + row[2] + '
';
}
});
$('#team_1').result(function(event, data, formatted){
$('#team_id').attr('value',data[1]);
document.location.href = '/profiles.php?t='+ $('#team_id').attr('value');
return true;
});
$('#team_1').ready(function(){
if( $('#team_id').attr('value')==0 ){
$('#team_id').attr('value',0);
$('#team_1').addClass('team_blank');
$('#team_1').attr('value', 'Escriba una parte del nombre del equipo');
}
});
$('#team_1').blur(function(){
if( $('#team_id').attr('value')==0 ){
$('#team_id').attr('value',0);
$('#team_1').addClass('team_blank');
$('#team_1').attr('value', 'Escriba una parte del nombre del equipo');
}
});
$('#team_1').focus(function(){
$('#team_id').attr('value',0);
$('#team_1').removeClass('team_blank');
$('#team_1').attr('value', '');
});
$('.add').click(function(){
$(document).bind('beforeReveal.facebox', function(){
$('#facebox').css('width', '400px');
$('#facebox_title').text('Agregar como amigo');
})
$(document).bind('afterReveal.facebox', function(){
$('.send_req').click(function(){
jQuery.facebox({ajax: '/modules/add_friend.php?add_friend=1&u=' + $(this).attr('u') });
return false;
});
})
jQuery.facebox({ajax: '/modules/add_friend.php?u=' + $(this).attr('u') });
return false;
});
})