URI:
   DIR Return Create A Forum - Home
       ---------------------------------------------------------
       buzzcodes
  HTML https://buzzcodes.createaforum.com
       ---------------------------------------------------------
       *****************************************************
   DIR Return to: Free Codes js,html,php etc  
       *****************************************************
       #Post#: 7--------------------------------------------------
       Make TOS term of service on your link webflood
       By: TEAMBOKER Date: February 12, 2012, 10:07 am
       ---------------------------------------------------------
       Add an "Accept Terms & Conditions" clause to your form with this
       script. With it, users must explicitly signal their acceptance
       of your terms/conditions (by checking a box), before he/she can
       submit the form. Very useful script.
       example
       <SCRIPT language=JavaScript>
       <!--
       //Accept terms & conditions script (by InsightEye
       www.insighteye.com)
       //Visit JavaScript Kit (
  HTML http://javascriptkit.com
       ) for this
       script & more.
       function checkCheckBox(f){
       if (f.agree.checked == false )
       {
       alert('Please check the box to continue.');
       return false;
       }else
       return true;
       }
       //-->
       </SCRIPT>
       <form action="/yourscript.cgi-or-your-page.html" method="GET"
       onsubmit="return checkCheckBox(this)">
       <!--Enter your form contents here-->
       <b>By submitting, I agree that all info entered was done
       accurately & truthfully.</b>
       I accept: <input type="checkbox" value="0" name="agree">
       <input type="submit" value="Submit form">
       <input type="button" value="Exit"
       onclick="document.location.href='/index.html';">
       </form>
       [code]<SCRIPT language=JavaScript>
       <!--
       //Accept terms & conditions script (by InsightEye
       www.insighteye.com)
       //Visit JavaScript Kit (
  HTML http://javascriptkit.com
       ) for this
       script & more.
       function checkCheckBox(f){
       if (f.agree.checked == false )
       {
       alert('Please check the box to continue.');
       return false;
       }else
       return true;
       }
       //-->
       </SCRIPT>
       <form action="/yourscript.cgi-or-your-page.html" method="GET"
       onsubmit="return checkCheckBox(this)">
       <!--Enter your form contents here-->
       <b>By submitting, I agree that all info entered was done
       accurately & truthfully.</b>
       I accept: <input type="checkbox" value="0" name="agree">
       <input type="submit" value="Submit form">
       <input type="button" value="Exit"
       onclick="document.location.href='/index.html';">
       </form>[/code]
       *****************************************************