I have two blocks of code which basically check for 1) a click event on a radio button e.g.

$("input[id='frmSkill']").click(function(){ 
      //do something
});

And 2) a block of code to check if a radio button is :checked, if so, then perform some actions e.g.

if($("input[id='frmSkill']:checked").val()){
      //do something
});

What I'd like to do is combine the two in order to reduce the code as the actions performed under each are the same.

link|improve this question

65% accept rate
feedback

4 Answers

$("input[id='frmSkill']").click(function(){ 
      if($(this).is(":checked")) {
          // do something, e.g.
          alert($(this).val());
      } else {
          // do something else
      }
});

I think you're looking for the is traversal method.

link|improve this answer
feedback

I think the "change" event is more adapted to a checkbox:

    $("input[id='frmSkill']").bind('change',function(){ 
      if($(this).is(':checked')){
         // do something
      }
    });
link|improve this answer
Checkbox change support is iffy with IE. – karim79 Apr 12 '10 at 10:22
seems you are right: stackoverflow.com/questions/208471/… thanks – pixeline Apr 12 '10 at 10:39
feedback

A separate function that can be used in both cases:

function OnClickOrCheck(){
// code for both cases here
}

$("input[id='frmSkill']").click(OnClickOrCheck);

if($("input[id='frmSkill']:checked").val()){
OnClickOrCheck();
}
link|improve this answer
feedback

Why are you all complicating everything?

$("input[id='frmSkill']").change(function(){
    // Your Code Here
});
link|improve this answer
Change won't work though. I'm using :checked to show the correct content after php validation, if validation fails, I need to know which content to show. – user275074 Apr 12 '10 at 10:58
Are you using the callback function from ajax? what you want need to be handled by ajax callback function, not by the change or checked function. – CuSS Apr 12 '10 at 17:22
feedback

Your Answer

 
or
required, but never shown

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