Created
June 2, 2015 10:35
-
-
Save anonymous/ecce50e2171ed33b50d4 to your computer and use it in GitHub Desktop.
Fired on Page Load
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 type="text/javascript"> | |
| function clickFunc(){ | |
| $('#requestForm').empty(); | |
| $('#requestForm').prepend('Hi'); | |
| }; | |
| $(document).ready(function(){ | |
| $('#next').click(clickFunc); | |
| }); | |
| </script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment