#RichDevTips ...content is what matters

2016-04-25

Hiding the Sharepoint 2013 ribbon / navigation bar using JQuery


Command:
Hide      $('#globalNavBox').hide();
Show    $('#globalNavBox').show();

Example:
<script type="text/javascript">
$( document ).ready(function() {
                               $('#globalNavBox').hide();
});
</script>

Happy coding

No comments :

Post a Comment