Skip to content

Instantly share code, notes, and snippets.

Created June 2, 2015 10:35
Show Gist options
  • Save anonymous/ecce50e2171ed33b50d4 to your computer and use it in GitHub Desktop.
Save anonymous/ecce50e2171ed33b50d4 to your computer and use it in GitHub Desktop.
Fired on Page Load
<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