form-login-register.js 392 B

123456789101112131415
  1. $(document).ready(function(){
  2. 'use strict';
  3. //Login Register Validation
  4. if($("form.form-horizontal").attr("novalidate")!=undefined){
  5. $("input,select,textarea").not("[type=submit]").jqBootstrapValidation();
  6. }
  7. // Remember checkbox
  8. if($('.chk-remember').length){
  9. $('.chk-remember').iCheck({
  10. checkboxClass: 'icheckbox_square-blue',
  11. radioClass: 'iradio_square-blue',
  12. });
  13. }
  14. });