how to make sure the non disclosure agreement is read
- by Xin Qian Ch'ang
Every time a user registers to our site we need to show a non-disclosure agreement. In order to continue the user has to accept it. My issue is that I have the NDA in all one page and the user does not really read it and accept (like we all do).
What I want is to make sure the user reads the NDA and accepts it one he "read" it?
What I have now is a simple jqeury validation if the user checks a box and click on accept. then it goes to the next page.
Here's what i have
<script>
$(document).ready(function() {
$('#go').click(function() {
// check if checkbox is check and go to next page
});
});
</script>
<div>
full nda
<hr>
<input type=checkbox> <input type=button value=go id=go>
</div>
Thanks