Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. <script type="text/javascript">
  2. $(function () {
  3. //MultiChoice Field static name
  4. $('input', 'table[id^="MultiChoice"]').each(function () {
  5. $(this).change(function () {
  6. if (this.checked) {
  7. //Option field title
  8. $('nobr:contains("Option")').closest('tr').hide();
  9. } else {
  10. $('nobr:contains("Option")').closest('tr').show();
  11. }
  12. });
  13. })
  14. })
  15. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement