How to hide SharePoint Column in Display/Edit/New form in SharePoint 2010/2013/2016/2019/Office 365?

Hello SharePointers,

Below are the script to hide SharePoint Column in Display/Edit/New form in SharePoint 2010/2013/2016/2019/Office 365

script src=”//code.jquery.com/jquery-1.12.4.js” type=”text/javascript”>
<script type=”text/javascript”>
$(function () {
$(“.ms-standardheader:contains(‘yourFieldName’)”).closest(“tr”).hide();
});
</script>

Happy SharePointing 🙂

Leave a Reply

Your email address will not be published. Required fields are marked *