0

Im hoping someone could supply me the JQUERY code to check what the value of a choice field is.

I thought I needed to check a checkbox type field so I started with:

 if ($("input[title$='Phone Data Collection']").is(':checked'))

…and looked for a change event with…

 $("input[title$='Phone Data Collection']").click(function()  {      //If checkbox is checked then hide the fields      if (this.checked)

But now that I know it is a choice field I’m a little lost. Please help…

(Visited 38 times, 1 visits today)
Add a Comment