jQuery(document).ready(function($) { /** autocompleters **/ $('#team_1').autocomplete('/ajax_responser.php?action=getTeamsMatch', { matchContains: true, minChars: 2, resultsClass: "ac_team_results", formatItem: function(row, i, max) { return '
' + row[0] + '
' + row[2] + '
'; } }); $('#team_1').result(function(event, data, formatted){ $('#team_id').attr('value',data[1]); return data[1]; }); $('#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', ''); }); $('#registration_form').submit(function(){ team_id = $('#team_id').attr('value'); if(team_id==0){ alert('Debes Seleccionar tu Equipo'); return false; } }); })