Guest User

Untitled

a guest
Feb 18th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. $(' ul').each(function(){
  2.  
  3.  
  4. var list=$(this),
  5. select=$(document.createElement('select')).insertBefore($(this).hide());
  6. $('>li a', this).each(function(){
  7. var target=$(this).attr('target'),
  8. option=$(document.createElement('option'))
  9. .appendTo(select)
  10. .val(this.href)
  11. .html($(this).html())
  12. });
  13. select.change(function(){
  14. //alert('url = ' + this.value );
  15. window.location.href = this.value;
  16. })
  17.  
  18. list.remove();
  19. });
Add Comment
Please, Sign In to add comment