I am trying to create a form using a button inside a text box. I want this button to be in the text box. This is how I tried:
<div class="row"> <div class="col-sm-6"> <div class="form-group required"> <label for="PickList_Options" class="col-sm-4 control-label">Options</label> <div class="col-sm-4 buttonwrapper"> <input type="text" class="form-control" id="PickList_Options" name="PickList_Options" value='' /> <button>GO</button> </div> </div> </div> <div class="col-sm-6"> <div class="result" id="mydiv"></div> </div> </div>
my css:
.buttonwrapper { display:inline-block; } input, button { background-color:transparent; border:0; }
But the problem is that the Go button is under the text box. What to do to put it in a text box? 
I want the "Go" button to be in the text box.
source share