How could I show my error when the user clicks out of the input box etc?
jQuery(document).ready(function() {
//Home Validation
$("#quote").validate({
rules:{
companyName:{
required: true,
url: true
}
}
});
etc etc
Wow this took me WAY too long to figure out.
Short answer:
input type="input"should beinput type="text".Then this will work: