Last active
December 20, 2015 23:38
-
-
Save lando2319/6213577 to your computer and use it in GitHub Desktop.
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
| <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