If (acctRB.Checked == true)

{
Execute Business Code
}
link|improve this question
that's pretty much it. – lincolnk Oct 1 '10 at 13:47
That's the IE way.... – The Elite Gentleman Oct 1 '10 at 13:57
feedback

2 Answers

Well, you don't need the == true:

if (acctRB.checked)
{
    // It's checked
} 
else 
{
    // It's not checked
}

So what you have is pretty much correct. Just remove the == true as it's not required.

link|improve this answer
if document.getElementById('acctRB').checked == true){ alert('hi'); } – bill Oct 1 '10 at 13:52
ok wil try that – bill Oct 1 '10 at 13:54
hmm idk why this isnt' workign – bill Oct 1 '10 at 13:55
You're missing a bracket: if (document.getElementById('acctRB').checked){ alert('hi'); }. Here's a working example: jsfiddle.net/WRHAn – GenericTypeTea Oct 1 '10 at 13:56
feedback

Bear in mind that IE is case insensitive while other browsers aren't. Your sample code will work for IE....

Rather do

if (acctRB.checked) {
     //Checked
} else {

  //Unchecked
}

It works for both IE and other major browsers....Or, if if checkbox id is "acctRB" do,

if (document.getElementById("acctRB").checked) {

   //Checked
} else {

   //Unchecked
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.