Hi All,
In a following post ,We will see how to hide "Recent" link and Its node in SharePoint 2013.
I am doing this by using Content Editor just for Example. You can place the same code in Master Page.
Add Content Editor to your Page and Paste the below Code and save the Page.
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery(".ms-core-listMenu-item:contains('Recent')").parent().hide();
});
</script>
Please find the below snap shots for reference.
In a following post ,We will see how to hide "Recent" link and Its node in SharePoint 2013.
I am doing this by using Content Editor just for Example. You can place the same code in Master Page.
Add Content Editor to your Page and Paste the below Code and save the Page.
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script type="text/javascript">
jQuery(document).ready(function() {
jQuery(".ms-core-listMenu-item:contains('Recent')").parent().hide();
});
</script>
Please find the below snap shots for reference.
Thanks.
0 comments:
Post a Comment