All Questions
Tagged with content-query-web-part jquery
1 question
1
vote
2
answers
2k
views
sharepoint content query webpart: hide empty column with jquery
I want to hide a list column in editform.aspx
</script>
<script language="JavaScript">
$(document).ready(function()
{ $('nobr:contains("columnname")').closest('tr').hide() });
</...