Skip to content

Instantly share code, notes, and snippets.

@NickDeckerDevs
Created June 27, 2017 19:22
Show Gist options
  • Select an option

  • Save NickDeckerDevs/ff4247e8489e871202383b9c18acde10 to your computer and use it in GitHub Desktop.

Select an option

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
<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