I am trying to hide one of the 3 radio buttons on my page. Although they all have the same class, each button has a different value. I attempted to write code to achieve this, but unfortunately, it is hiding all radio buttons instead of just one. Could someone assist me in correcting my code? Here is what I have so far:
$(document).ready(function() {
if ($('input.delivery_option_radio').val('49,').is(":checked")) {
$(".hide").css("display", "none");
alert("test");
}
});