Guest User

Untitled

a guest
Feb 25th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. $(document).ready(function() {
  2. /*
  3. * Validar parsley com bootstrap select
  4. */
  5. if($('.parsley-form-validate').length > 0)
  6. {
  7. $('.parsley-form-validate').parsley().on('field:validated', function()
  8. {
  9. $('.bootstrap-select .parsley-error').each(function( index ) {
  10. $('.bootstrap-select .bs-placeholder').addClass('parsley-error');
  11. });
  12.  
  13. $('.bootstrap-select .parsley-success').each(function( index ) {
  14. $('.bootstrap-select .bs-placeholder').removeClass('parsley-error');
  15. });
  16.  
  17. });
  18. }
  19. });
Add Comment
Please, Sign In to add comment