
Untitled
By: a guest on
Aug 11th, 2012 | syntax:
None | size: 1.46 KB | hits: 8 | expires: Never
<div class="equiposLideres comboequipos">
<div class="cabecera">Jugadores líderes por selección</div>
<select name="seleccionpais" id="seleccionar-pais">
<option selected="">Elige un país...</option>
<option value="lideres_plantel21_stats.html">Argentina</option>
<option value="lideres_plantel166_stats.html">Bolivia</option>
<option value="lideres_plantel167_stats.html">Brasil</option>
<option value="lideres_plantel159_stats.html">Chile</option>
<option value="lideres_plantel168_stats.html">Colombia</option>
<option value="lideres_plantel278_stats.html">Costa Rica</option>
<option value="lideres_plantel169_stats.html">Ecuador</option>
<option value="lideres_plantel289_stats.html">México</option>
<option value="lideres_plantel170_stats.html">Paraguay</option>
<option value="lideres_plantel171_stats.html">Perú</option>
<option value="lideres_plantel172_stats.html">Uruguay</option>
<option value="lideres_plantel173_stats.html">Venezuela</option>
</select>
<script>
$(function(){
// bind change event to select
$('#seleccionar-pais').bind('change', function () {
var url = $(this).val(); // get selected value
if (url) { // require a URL
window.location = url; // redirect
}
return false;
});
});
</script>
</div><!-- equiposLideres -->