»
EnglishFrenchVietnamese

Print - Accept Terms - JavaScriptBank.com

Full version: jsB@nk » Form » Accept Terms
URL: https://www.javascriptbank.com/accept-terms.html

Accept Terms © JavaScriptBank.comThis Script allows your visitors or customers to accept your terms and conditions before proceeding by ticking a Check Box. If they don't agree, an exit box on the form takes them back to the home page.

Full version: jsB@nk » Form » Accept Terms
URL: https://www.javascriptbank.com/accept-terms.html



JavaScript
<SCRIPT LANGUAGE="JavaScript">// Colin Pc , insighteye.com<!-- Beginfunction checkCheckBox(f){if (f.agree.checked == false ){alert('Please check the box to continue.');return false;}elsereturn true;}//  End --></script><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->


HTML
<form action="/yourscript.cgi-or-your-page.html" method="POST" onsubmit="return checkCheckBox(this)">I accept: <input type="checkbox" value="0" name="agree"><input type="submit" value="Continue Order"><input type="button" value="Exit" onclick="document.location.href='/index.html';"></form><!--    This script downloaded from www.JavaScriptBank.com    Come to view and download over 2000+ free javascript at www.JavaScriptBank.com-->