Back

Explore Courses Blog Tutorials Interview Questions
0 votes
3 views
in Web Technology by (20.3k points)

I can set a radio button to checked fine, but what I want to do is set up a sort of 'listener' that activates when a certain radio button is checked.

Take, for example, the following code:

$("#element").click(function()

    $('#radio_button').attr("checked", "checked");

});

it adds a checked attribute and all is well, but how would I go about adding an alert. For example, that pops up when the radio button is checked without the help of the click function?

1 Answer

0 votes
by (40.7k points)

Try using the code given below:

$('#element').click(function() {

   if($('#radio_button').is(':checked')) { alert("it's checked"); }

});

Related questions

Browse Categories

...