jQuery(document).ready(function($) {
/** autocompleters **/
$('.ac_input').autocomplete('/ajax_responser.php?action=getTeamsMatch', {
matchContains: true,
minChars: 2,
resultsClass: "ac_team_results",
formatItem: function(row, i, max) {
return '
' + row[0] + '
' + row[2] + '
';
}
});
$('.ac_input').result(function(event, data, formatted){
document.location.href = '/equipos/' + data[4];
});
$('.ac_input').attr('value', 'Escriba una parte del nombre');
$('.ac_input').blur(function(){
$(this).attr('value', 'Escriba una parte del nombre');
});
$('.ac_input').focus(function(){
$(this).attr('value', '');
});
$('#f').change(function(){
document.location.href = '/teams.php?f=' + this.value;
});
$('#c').change(function(){
document.location.href = '/teams.php?c=' + this.value;
});
})