You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
264 B

  1. semantic.validateForm = {};
  2. // ready event
  3. semantic.validateForm.ready = function() {
  4. // selector cache
  5. var
  6. // alias
  7. handler
  8. ;
  9. // event handlers
  10. handler = {
  11. };
  12. };
  13. // attach ready event
  14. $(document)
  15. .ready(semantic.validateForm.ready)
  16. ;