I want to make use of "onfocusout" at an input element. Unfortunately my validators return the following error message: "Attribute onfocusout not allowed on element input at this point."
The html code looks like this:
<div class="form-group">
<label for="dbHost" class="control-label col-sm-4">DB-Server</label>
<div class="col-sm-10">
<input type="text" class="form-control" id="dbHost" name="dbHost" onfocusout="validateForm();" value="db">
</div>
<div>
Any idea?