This is my code :
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script type="text/javascript" src="/js/validation/jquery.validationEngine-en.js"></script>
<script type="text/javascript" src="/js/validation/jquery.validationEngine.js"></script>
<script type='text/javascript'>
$( document ).ready(function() {
$(".register_form").validationEngine();
$(".register_form").bind("jqv.field.result", function(event, field, errorFound, prompText){
console.log(errorFound) ;
});
});
</script>
<form id="contact-form" action ="<?php echo $this->basePath()."/user/register" ?>" method ="post" name="register_form" class="register_form">
<div class ="col-md-6">
<div class="text-fields">
<div class="float-input">
<input name="username" id="username" type="text" class ="validate[required,custom[onlyLetterNumber],maxSize[20]] text-input" placeholder="username" >
<span><i class="fa fa-user"></i></span>
</div>
</div>
</div>
<button type="submit" name="contact-submit" id="register_submit">
<i class="fa fa-user"></i>
Register
</button>
</form>
As you see i have just one input text field (username). but when i load the page in the console i get this error message : **
TypeError: $(...).validationEngine is not a function
$(".register_form").validationEngine();
**
WHY ? I already check multiple post from stackoverflow, which have related question, but non of them is working for me
/in the path)