Created
June 27, 2017 19:22
-
-
Save NickDeckerDevs/ff4247e8489e871202383b9c18acde10 to your computer and use it in GitHub Desktop.
Quick fix to move checkbox down to the bottom of the form area
This file contains hidden or 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
| <script> | |
| jQuery(window).load(function() { | |
| var checkbox = jQuery('.mktoFormRow').eq(3).html(); | |
| jQuery('.mktoButtonRow').before(checkbox) | |
| jQuery('.mktoFormRow').eq(3).remove(); | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment