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
$('#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
Related Posts
No comments:
Post a Comment