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
https://forums.phpfreaks.com/topic/195909-check-checkbox-didnt-work/
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.

Archived

This topic is now archived and is closed to further replies.

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