How could i return user to unfilled field when he push "submit" button?
I have something like this:
<!--Contact Name-->
<div class="section" id="inputdiv">
<span class="fieldname">Name:</span>
<input type="text" id="contactname" /> <!-- Nessesary to be filled-->
<script type="text/javascript">
var contactname = new LiveValidation('contactname');
contactname.add(Validate.Presence);
</script>
</div>
<a class="button-more" style="width:903px; float: right; font-size: 15px; margin-top: 15px;" href="">Submit my answers</a>
Or just this:
<input type="text" id="contactname" /> <!-- Nessesary to be filled-->
<a href="">Submit my answers</a>