Guest User

Untitled

a guest
Oct 19th, 2017
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.46 KB | None | 0 0
  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 -->
Add Comment
Please, Sign In to add comment