Here is my jsfiddle for bootstrap css dropdown menu
Currently when I click on the arrow button on right side, it opens the menu items.
What I want to removing the button and items should appear when user click on the Edit box(select category ..).
The menu should cover entire width of the edit box.
<div class="col-lg-6">
<div class="input-group">
<input type="text" class="form-control" placeholder="Select category ...">
<div class="input-group-btn">
<button type="button" class="btn btn-default dropdown-toggle" data-toggle="dropdown"> <span class="caret"></span></button>
<ul class="dropdown-menu pull-right">
<li><a href="#">Sports</a></li>
<li><a href="#">Entertainment</a></li>
<li><a href="#">Politics</a></li>
<li class="divider">Technolohy</li>
<li><a href="#"></a></li>
</ul>
</div><!-- /btn-group -->
</div><!-- /input-group -->
</div><!-- /.col-lg-6 -->
</div><!-- /.row -->
When user take cursor on Textbox it should show menu items covering entire width of the textbox
UpdATE