Skip to main content
added 11 characters in body
Source Link
Ganesh Sanap - MVP
  • 47.4k
  • 22
  • 32
  • 64

Below is tested and it works.:

$(document).ready(function() { $("td.ms-propertysheet:contains('Delete')").hide(); });
<script type="text/javascript" src="/Pages/jquery-1.9.0.js" ></script> <script> $(document).ready(function() { $("td.ms-propertysheet:contains('Delete')").hide(); }); </script> 

Below is tested and works.

$(document).ready(function() { $("td.ms-propertysheet:contains('Delete')").hide(); });

Below is tested and it works:

<script type="text/javascript" src="/Pages/jquery-1.9.0.js" ></script> <script> $(document).ready(function() { $("td.ms-propertysheet:contains('Delete')").hide(); }); </script> 
Source Link

Below is tested and works.

$(document).ready(function() { $("td.ms-propertysheet:contains('Delete')").hide(); });