Hey guys, what function could I use to say, if this radio button is checked show this \'div\'. Thanks in advance.
$("myradiobuttonselector").change(function () { if ($(this).attr("checked")) { $("mydivSelector").show(); } else { $("mydivSelector").hide(); } });