Hi Everyone,
I am using this script to hide some fields on a custom list form. However, this appears to also hide fields that has relative name (ex. Evaluator and Evaluator’s Comments). So, if I hide the Evaluator field in the form, the Evaluator’s Comments field will also be hidden. How can I make it specific?
<script type="text/javascript"> $(document).ready(function() { $('nobr:contains("Evaluator")').closest('tr').hide(); }); </script>
Thank You,
Arnel