Skip to content

Instantly share code, notes, and snippets.

@lando2319
Last active December 20, 2015 23:38
Show Gist options
  • Select an option

  • Save lando2319/6213577 to your computer and use it in GitHub Desktop.

Select an option

Save lando2319/6213577 to your computer and use it in GitHub Desktop.
<form id="approve_bg">
<input type="checkbox" id="approve_bg_check">
Check the box to certify that the information below is accurate
</form>
<div id="apply_button", style="display:none" >
<%= button_to "Apply", tenant_root_url %>
</div>
<script type="text/javascript">
$('#approve_bg_check').change(function () {
$('#apply_button').toggle();
});
</script>
<%= image_tag "/assets/sample_bg_check.png" %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment