I'm using bassistance jquery.validation and it works on ff and chrome but not on mobile and IE. The examples on the website works fine but once in my project only ff and chrome. I'm using ruby and rails.
Using this setup.
(function() {
// use custom tooltip; disable animations for now to work around lack of refresh method on tooltip
$("#madlibs_form").tooltip({
show: false,
hide: false
});
// validate signup form on keyup and submit
$("#madlibs_form").validate({
rules: {
industry: {
required:"required";
},
amount: {
required:"required";
}
},
messages: {
desired_amount: {
required:{"Please enter loan amount"}
}
});
$("#madlibs_form input:not(:submit)").addClass("ui-widget-content");
$(":submit").button();
})();