Jump to content
MakeWebGames

Recommended Posts

Posted

im makin a tearms and servies thing on my game but wen i press submit it gose to the main website i want it to say please check the tearms and servises do you know how? iv done a link like Enter i want it the same without the

Posted

Re: PLEASE READ!!!!!!

 

im makin a tearms and servies thing on my game but wen i press submit it gose to the main website i want it to say please check the tearms and servises do you know how? iv done a link like Enter i want it the same without the <input type bit.

Make sure the form action is correct?

Posted

Re: PLEASE READ!!!!!!

thats the thing i dont know the full code for it the tearms bit so u cn press submit untill the box is checked i want this script as ENTER

<SCRIPT language=JavaScript>

<!--

//Accept terms & conditions script (by InsightEye www.insighteye.com)

//Visit JavaScript Kit (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)">

 

By submitting, I agree that all info entered was done accurately & truthfully.

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>

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...