Возможно, что-то вроде этой скрипки будет работать для вас.
HTML:
<div class="container">
<div class="row">
<div class="col-md-5">
<div id="d1" class="wrapper-dropdown-5 active" tabindex="1">
<span data-text="?s???»??">?s???»??</span>
<ul class="dropdown">
<li>...</li>
<li>
<a href="#"><img src="" alt="" />?s???»?° 1</a>
</li>
<li>
<a href="#"><img src="" alt="" />?s???»?° 2</a>
</li>
</ul>
</div>
<div id="d2" class="wrapper-dropdown-5 bottom" tabindex="1">
<span data-text="?s?°??????????">?s?°??????????</span>
<div>
<ul class="dropdown">
<li>...</li>
<li>
<a href="#"> <img src="" alt="" />?s?°???????? 1</a>
</li>
<li>
<a href="#"> <img src="" alt="" />?s?°???????? 2</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
Автор сценария:
function DropDown(el) {
this.dd = el;
this.placeholder = this.dd.children('span');
this.opts = this.dd.find('ul.dropdown > li');
this.val = '';
this.index = -1;
this.initEvents();
}
DropDown.prototype = {
initEvents : function() {
var obj = this;
obj.dd.on('click', function(event){
$(this).toggleClass('active');
return false;
});
obj.opts.on('click',function(){
var opt = $(this);
$('div > span').not(opt).each(function() {
$(this).text($(this).data('text'));
});
obj.val = opt.text();
obj.index = opt.index();
obj.placeholder.text(obj.val);
});
},
getValue : function() {
return this.val;
},
getIndex : function() {
return this.index;
}
}
$(function() {
var dd = new DropDown( $('#d1') );
$(document).click(function() {
$('.wrapper-dropdown-5').removeClass('active');
});
});
$(function() {
var dd = new DropDown( $('#d2') );
$(document).click(function() {
$('.wrapper-dropdown-5').removeClass('active');
});
});