Hi,
When I fill the textbox with the help of jQuery float label overlap on the dynamic text. Below is my code
HTML
<div class="row">
<div class="col-md-4">
<div class="form-group form-group-label">
<label class="floating-label" for="employeeName"> Employee Name</label>
<input class="form-control" id="employeeName" type="text">
</div>
</div>
</div>
jQuery
$("#employeeName").val(user.Title)
