how to make sure the non disclosure agreement is read

Posted by Xin Qian Ch'ang on Stack Overflow See other posts from Stack Overflow or by Xin Qian Ch'ang
Published on 2011-11-13T01:39:31Z Indexed on 2011/11/13 1:51 UTC
Read the original article Hit count: 281

Filed under:
|
|

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

© Stack Overflow or respective owner

Related posts about JavaScript

Related posts about jQuery