Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wanted to customize a SelectBox with jquery and I have done this fake selectBox with Jquery but it is not working.

It is supposed to set invisible the "select" tag and put instead the div with the ul inside.

I'm newbie at Jquery so please if you could help me?

Thanks in advance,

Orangejuice.-

This is the html:

<label class="search-filter-tl">Sort by</label>
        <select class="select-sort-by" name="sort-by">
            <option>Relevance</option>
            <option value="alp-asc">Alphanumeric ASC</option>
            <option value="alp-desc">Alphanumeric DESC</option>
            <option value="pd-asc">Publish date ASC</option>
            <option value="pd-desc">Publish date DESC</option>
        </select>
        <div id="replace-sort-by" class="replace">
            <div class="current">Relevance</div>
            <ul id="sort-by-options" class="options">
                <li rel="alp-asc" >Alphanumeric ASC</li>
                <li rel="alp-desc">Alphanumeric DESC</li>
                <li rel="pd-asc">Publish date ASC</li>
                <li rel="pd-desc">Publish date DESC</li>
            </ul><!-- #options -->
        </div><!-- #replace-sort-by -->

And this is the Jquery:

$(document).ready(function (){ //Onload:Run a function when the page is fully loaded including graphics.

    var selectSortBy = $('select.select-sort-by');
    var replaceSortBySelect = $('div.replace');

    selectSortBy.css('display', 'none');
    replaceSortBySelect.css('display', 'block');

    var lis = $('ul.options li');

    for (var i = 0; i <= lis.length; i++){
        lis[i].click(function (){ //When you do a click in lis...
            selectSortBy.val($(this).attr()); //al valor del select asignale el valor del atribute del div
            $('ul.options').css('display','none'); //Do not show the option tag
            $('div.current').html($(this).html()); //Faked selected option that will be showned in the select input.
        });

    }

    $(replaceSortBySelect).mouseover(function() {
        $('ul.options').css('display','block');
    });

    $(replaceSortBySelect).mouseleave(function() {
        $('ul.options').css('display','none');
    });

});
share|improve this question

1 Answer

The problem is that you aren't specifying which attribute to obtain from the li element.

You can use this:

$(function() {
    var selectSortBy = $('select.select-sort-by');
    var replaceSortBySelect = $('div.replace');

    selectSortBy.css('display', 'none');
    replaceSortBySelect.css('display', 'block');

    $('ul.options li').click(function() {
        selectSortBy.val($(this).attr('rel'));
        $('ul.options').css('display','none');
        $('div.current').html($(this).html());
    });

    $(replaceSortBySelect).mouseover(function() {
        $('ul.options').css('display','block');
    });

    $(replaceSortBySelect).mouseleave(function() {
        $('ul.options').css('display','none');
    });
});

And, by the way, you should use the id's of the elements instead of the classes for the selectors, specially in this case where you have one element of each.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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