Skip to content

Instantly share code, notes, and snippets.

View icreatesolutions's full-sized avatar

icreatesolutions

View GitHub Profile
@icreatesolutions
icreatesolutions / gform-label.js
Last active October 24, 2018 04:25
Gravity Form - Label Minimising
// Target Gravity Form Inputs
var inputs = '.ginput_container input';
emFieldFocus(inputs);
// Failed Submission
$(document).on('gform_post_render', function(){
$(inputs).each(function() {
if( $(this).val() ) {
$(this).parents('.ginput_container').siblings('.gfield_label').addClass('filling');