Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do I convert an unordered list in this format:

<ul class="selectdropdown">
    <li><a href="one.html" target="_blank">one</a></li>
    <li><a href="two.html" target="_blank">two</a></li>
    <li><a href="three.html" target="_blank">three</a></li>
    <li><a href="four.html" target="_blank">four</a></li>
    <li><a href="five.html" target="_blank">five</a></li>
    <li><a href="six.html" target="_blank">six</a></li>
    <li><a href="seven.html" target="_blank">seven</a></li>
</ul>

into a dropdown in this format:

<select>
<option value="one.html" target="_blank">one</option>
<option value="two.html" target="_blank">two</option>
<option value="three.html" target="_blank">three</option>
<option value="four.html" target="_blank">four</option>
<option value="five.html" target="_blank">five</option>
<option value="six.html" target="_blank">six</option>
<option value="seven.html" target="_blank">seven</option>
</select>

using jQuery?

Edit:

in select box upon select item link should be open in new window and i want to give style to drop down link in this plugin http://www.dfc-e.com/metiers/multimedia/opensource/jqtransform/ i just need style for select dropdown

share|improve this question
@Dominic Rodger - The code i given is just for example – Jitendra Vyas Dec 13 '09 at 17:49

3 Answers

up vote 8 down vote accepted
$('ul.selectdropdown').each(function(){

	var select=$(document.createElement('select')).insertBefore($(this).hide());

	$('>li a', this).each(function(){

		var a=$(this).click(function(){

			if ($(this).attr('target')==='_blank'){

				window.open(this.href);

			}

			else{

				window.location.href=this.href;

			}

		}),

	    option=$(document.createElement('option')).appendTo(select).val(this.href).html($(this).html()).click(function(){

				a.click();

			});

		});

	});

In reply to your last comment, I modified it a little bit but haven't tested it. Let me know.

$('ul.selectdropdown').each(function(){
  var list=$(this),
  select=$(document.createElement('select')).insertBefore($(this).hide());
  $('>li a', this).each(function(){
    var target=$(this).attr('target'),
    option=$(document.createElement('option'))
     .appendTo(select)
     .val(this.href)
     .html($(this).html())
     .click(function(){
       if (target==='_blank'){
         window.open($(this).val());
       }
       else{
         window.location.href=$(this).val();
       }
      });
  });
  list.remove();
});
share|improve this answer
thx i'm trying ur solution – Jitendra Vyas Dec 13 '09 at 19:34
no link not opening in new window jsbin.com/etoyu – Jitendra Vyas Dec 13 '09 at 19:37
Is it not working or is it not what you want? – czarchaic Dec 13 '09 at 20:54
code working to make dropdown but links not opening in new window – Jitendra Vyas Dec 14 '09 at 4:46
link opening in same tab in firefox – Jitendra Vyas Dec 14 '09 at 4:46
show 7 more comments
$(function() {
    $('ul.selectdropdown').each(function() {
        var $select = $('<select />');

        $(this).find('a').each(function() {
            var $option = $('<option />');
            $option.attr('value', $(this).attr('href')).html($(this).html());
            $select.append($option);
        });

        $(this).replaceWith($select);
    });
});

EDIT

As with any jQuery code you want to run on page load, you have to wrap it inside $(document).ready(function() { ... }); block, or inside it's shorter version $(function() { ... });. I updated the function to show this.

EDIT

There was a bug in my code also, tried to take href from the li element.

share|improve this answer
but it's not working jsbin.com/omulu – Jitendra Vyas Dec 13 '09 at 18:01
still not working jsbin.com/uvabi – Jitendra Vyas Dec 13 '09 at 18:09
You are trying to execute the script inside <style> tags, change those to <script>. I also updated my function, there was a small mistake. – Tatu Ulmanen Dec 13 '09 at 18:20
oh , my mistake , solved now now i added ur latest code it's working now jsbin.com/igano but on select a item from dropdown i wanted to open link in new window – Jitendra Vyas Dec 13 '09 at 18:27
I updated my code in question – Jitendra Vyas Dec 13 '09 at 18:29
show 4 more comments

This solution is working also in IE and working with selected item (in anchor tag).

$('ul.selectdropdown').each(function(){
var list=$(this),
    select=$(document.createElement('select')).insertBefore($(this).hide()).change(function(){
  window.location.href=$(this).val();
});
$('>li a', this).each(function(){
  var option=$(document.createElement('option'))
   .appendTo(select)
   .val(this.href)
   .html($(this).html());
  if($(this).attr('class') === 'selected'){
    option.attr('selected','selected');
  }
});
list.remove();
});
share|improve this answer

protected by Community Sep 16 '11 at 4:00

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.