app.js 236 B

123456789
  1. require(["jquery", "../../dist/jquery.validate"], function($) {
  2. $.validator.setDefaults({
  3. submitHandler: function() { alert("submitted!"); }
  4. });
  5. // validate the comment form when it is submitted
  6. $("#commentForm").validate();
  7. });