This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//clone the form submit button for the form | |
var save_btn = jQuery('#gform_submit_button_2').clone(); | |
//change the label of the midway submit button | |
save_btn.val('Save and Submit'); | |
//get the ID of the gravity form | |
var gravity_form = jQuery('#gform_submit_button_2').closest('form'); | |
var gravity_form_id = gravity_form.attr('id'); | |
gravity_form_id = gravity_form_id.split("_"); | |
gravity_form_id = gravity_form_id[1]; | |
//get the last page of the form |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@mixin ie6 { * html & { @content } } | |
#logo { | |
background-image: url("/images/logo.png"); | |
@include ie6 { background-image: url("/images/logo.gif"); } | |
} |