I use the knockout verification plugin and it works fine, but I have a little problem, I want to change the verification range a little, but more noticeable with css, and I only want to insert the verification range immediately before the input element, now its additional range after the input element .
that's how its rendering right now,
<input id="personName" class="form-control placeholder has-error" type="text" data-bind="value: name" placeholder="Your name" title="This field is required." data-orig-title=""> <span class="validationMessage" style="">This field is required.</span>
So, I just want to add this range in front of the element.
Ancient
source share