View Single Post
Old 03-24-2009, 09:52 PM   #7 (permalink)
oldskool
oldskool's Avatar
 
Electrical Systems Design

Join Date: Jun 2008

Location: Maine, USA

Posts: 1,647

oldskool has a spectacular aura aboutoldskool has a spectacular aura about

Default Re: Javascript function problem

Quote:
Originally Posted by oldskool View Post
Thank you, then. I am glad to know that I am making some progress. Thanks to you and CrazeD, and jaeusm at times as well. You guys rock !
EDIT: Ok, I got it going now, here it is :

Code:
<html>
<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<title>Check box practice HTML</title>

<meta http-equiv="content-type" content="text/html;
     charset=iso-8859-1" />


<br />
<br />
<br />

<center><h3>Do you agree to the terms above ? <br />

If so, please check the checkbox below.<h3></center>

<br />
<br />


<script type="text/javascript">
/* <![CDATA[ */
//code written by Eric Maddan


function chkBoxselected()  {
   if (document.terms.chkBox.checked == false)   {
     
      window.alert(" You did not click the checkbox to confirm the rules listed above ");
      return false;
      }
   else
      {
      return true;
      }

}
 

/* ]]> */


</script>
</head>

<body>
<script type="text/javascript">
/* <![CDATA[ */



/* ]]> */

</script>

<center>
<form name="terms">
<input type="checkbox" name="chkBox" />  I accept the terms and conditions<br /><br />
<input type="button" name="close" value="Enter Site" size="75" 
    onClick="chkBoxselected()"></center>

</form>
    
    

</body>
</html>
ATTN: Admins, this thread can be closed now
__________________
  • Operating system(s) : Windows 7 Home Premium x64 | Ubuntu 9.10
  • CPU : Pentium Dual-Core E5200 @ 2.50GHz /Socket 775 LGA
  • Memory: 2X 2GB DDR2 SDRAM
  • Hard drive: 640 GB Western Digital Caviar Blue 7200rpm WD6400AAKS-75
  • Motherboard : Dell 0U880P
  • Video: nVidia GeGorce 8400GS
  • Chipset : Intel G41

<<<<< If you found anything I said helpful, please click the or under my avatar

Last edited by oldskool; 03-24-2009 at 10:16 PM.
oldskool is offline