app.js 236 Bytes Edit Raw Blame History 1 2 3 4 5 6 7 8 9 require(["jquery", "../../dist/jquery.validate"], function($) { $.validator.setDefaults({ submitHandler: function() { alert("submitted!"); } }); // validate the comment form when it is submitted $("#commentForm").validate(); });