Hi, I am not familiar with javascript, I am using a check box validation tool that I copied from this site:
http://mediazeal.com/checkbox-validator.htm
This is my webpage:
http://rbhlc.weebly.com/discover-hea...n-jyutsu.html#
Right now when you click the buy now button (when the checkbox is checked) i does not go to the hyperlink. How can I get the button to go to my link when the checkbox is validated?
Here is my code: (the authorize.net account it a Test Account.. so it won't link to anything sensitive)
<form name="form" method="post" action="#" onSubmit="return checkme();">
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td colspan="2" align="center"><input type="checkbox" name="agree" value="agree_terms"> I agree to the terms</td>
</tr>
<tr>
<td colspan="2" align="center">
<form name="PrePage" method = "post" action = "https://scotest.authorize.net/payment/CatalogPayment.aspx">
<input type = "hidden" name = "LinkId" value ="3569f626-b8a8-4974-8ceb-35ca08a63087" />
<input type = "image" src ="//testcontent.authorize.net/images/buy-now-gold.gif" /> </form>
</td>
</tr>
Thank you for your support.