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

