Hi,
I want to set “topPanel” display: none by default, but I can’t call it from OnPageLoad -> Link to external URL
I’ve tried this code:
javascript:$('#topPanel').css("display","none");
and
javascript:document.getElementById("topPanel").style="display:none";
and
javascript:document.getElementById( 'topPanel' ).style.display = 'none';
without any results.
I don’t want to change url to hide this panel
