How to hide List item and clear text of a particular List item from a radio button list in asp.net using Jquery?
What I tried:-
$("#CPHM_rbtLstRating_1").hide();
Issue:- unable to hide list item text. Please suggest correct way to hide particular list item text.
You can check a radio button simply like this;
if($('#radio_button').is(':checked')) {
$(".someparticularli").empty(); //empty the selected item
}