I need to have a row of text display when a checkboxed is checked. I know this is pretty simple, but I am new to this and when I try to read other answers to this question I get lost.
this is what I have:
 function RiskPlanRqd()
  {
    $('#RiskMgmt').click(function()
    {
        if ($("#RiskMgmt").is(':checked')) 
        {
            $(".togglevisibility").show();
        } 
        else 
        {   
            $(".togglevisibility").hide();
        }
    }       )
  }
Then for the checkbox I have:
<input type="checkbox" id="RiskMgmt" />Risk Management Plan<br />
and for the text I want to show up if checked i have:
<td> <id="PlanStatus"; class="togglevisibility">Plan Status: </td>
 
     
     
     
    