Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Aug 11th, 2012  |  syntax: None  |  size: 1.46 KB  |  hits: 8  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. <div class="equiposLideres comboequipos">
  2.                         <div class="cabecera">Jugadores líderes por selección</div>
  3.                         <select name="seleccionpais" id="seleccionar-pais">
  4.                         <option selected="">Elige un país...</option>
  5.                         <option value="lideres_plantel21_stats.html">Argentina</option>
  6.                         <option value="lideres_plantel166_stats.html">Bolivia</option>
  7.                         <option value="lideres_plantel167_stats.html">Brasil</option>
  8.                         <option value="lideres_plantel159_stats.html">Chile</option>
  9.                         <option value="lideres_plantel168_stats.html">Colombia</option>
  10.                         <option value="lideres_plantel278_stats.html">Costa Rica</option>
  11.                         <option value="lideres_plantel169_stats.html">Ecuador</option>
  12.                         <option value="lideres_plantel289_stats.html">México</option>
  13.                         <option value="lideres_plantel170_stats.html">Paraguay</option>
  14.                         <option value="lideres_plantel171_stats.html">Perú</option>
  15.                         <option value="lideres_plantel172_stats.html">Uruguay</option>
  16.                         <option value="lideres_plantel173_stats.html">Venezuela</option>
  17.                         </select>
  18.     <script>
  19.     $(function(){
  20.       // bind change event to select
  21.       $('#seleccionar-pais').bind('change', function () {
  22.           var url = $(this).val(); // get selected value
  23.           if (url) { // require a URL
  24.               window.location = url; // redirect
  25.           }
  26.           return false;
  27.       });
  28.     });
  29.    </script>
  30. </div><!-- equiposLideres -->