Home / Widgets / Animacja Formularza
Duplicate Snippet

Embed Snippet on Your Site

Animacja Formularza

Code Preview
js
jQuery("input , textarea").focus(function(){
  jQuery(this).parents('.elementor-field-group').addClass('focused');
});
jQuery("input , textarea").blur(function(){
  var inputValue = jQuery(this).val();
  if ( inputValue == "" ) {
    jQuery(this).parents('.elementor-field-group').removeClass('focused');  
  }
});

Comments

Add a Comment