I have a piece of code I am working with and there is a plugin being used to style the select boxes so it's hell or already.

I am destroying the element so that when I chose something from #searchbrand it filters out what is it #searchmodel. However I am having trouble rebuilding the element as previously styles when this triggers.

$("#searchbrand").change(function() {
    var _class = $('option:selected', this).attr('class');
    $('#searchmodel option').hide().filter(function() {return $(this).attr('class') == _class;}).show();
    $('#searchmodel').selectBox('destroy');
});
link|improve this question
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.