Jump to content

Check checkbox didn't work


robert_gsfame

Recommended Posts

How come that this code is not working?

 

<script type="text/javascript">

function check() {

if(document.getElementById('id1').checked == true) {

alert("number 1 checked");

}else{

alert("number 1 not checked");}

</script>

 

and here is my html code

 

<form name=form1>

<input type ="checkbox" name="checkbox1" id="id1">Checkbox 1

<input type="button" name="button1" onclick="check()">

</form>

Link to comment
Share on other sites

If you properly indent the code to show structure you probably would have noticed that the function doesn't having a closing curly bracket.

 

function check()
{
  if(document.getElementById('id1').checked == true)
  {
    alert("number 1 checked");
  }
  else
  {
    alert("number 1 not checked");
  }

 

By the way, there's no reason to use "== true" int he coparison. When doing an IF condition, the whole point is to determine if the conditions equal true. So just testing "document.getElementById('id1').checked" would be more efficient.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

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.   Restore formatting

  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...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.