Blame view

frontend/web/js/validation/demo/requirejs/app.js 236 Bytes
394e2db6   Administrator   Importers CRUD
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();
  });