I'm having a hard time focusing an input field in the drop down menu of Twitter Bootstrap. My html markup is as follows:
<div class="btn-group">
<button class="btn dropdown-toggle" data-toggle="dropdown">
Groups <span class="caret"></span>
</button>
<ul class="dropdown-menu">
<li><a href="#">Friends <i class="icon-ok pull-right"></i></a></li>
<li><a href="#">Family <i class="icon-ok pull-right"></i></a></li>
<li><a href="#">Other</a></li>
<li class="divider" />
<li><input type="text" class="input-block-level" placeholder="New group" /></li>
</ul>
</div>
I've also created a jsFiddle for this: http://jsfiddle.net/Yppqw/2/
Can please tell me how to keep the drop down visible when focusing the input field