Tuesday, July 10, 2012

Asp.Net jQuery track checked Event of Radio Buttons


In this post Asp.Net jQuery track checked Event of Radio Buttons, we shall see on how to track the checked event of a Radio Button using jQuery.

We can use the following script to get track the checked event of a Radio Button


// RadioButtons Checked Event
$('#radActive').click(function() {
    alert($('#radActive').attr('checked') ? true : false);
    alert($('#radActive:checked').val() ? true : false);
    alert($('#radActive:checked').is(':checked'));
});


To see a full example using jQuery and Radio Buttons refer to the post Asp.Net jQuery Radio Button Tutorial


Search Flipkart Products:
Flipkart.com

No comments: