If I have following html structure
<div class="col-lg-3 form-group">
<input id="My_Value" class="form-control ui-autocomplete-input" type="text" value="" name="My.Value" autocomplete="off" data-toggle="tooltip" data-placement="right" data-original-title="Choose!">
<span class="field-validation-valid" data-valmsg-replace="true" data-valmsg-for="My.Value"></span>
</div>
<div class="col-lg-1">
<span class="glyphicon glyphicon-ok"></span>
<span class="glyphicon glyphicon-remove"></span>
<a class="" title="some title">
</div>
When traversing dom if I know My_Value how can I select glyphicon-ok.
Worth to mention is there are many elements with glyphicon-ok class and I want to select only this first after My_Value selector.