You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.my-panel-name {
opacity:0; /* or display: none; or visibility: hidden; */
}
.my-panel-name.show {
opacity:1; /* or "display: block;" or "visibility: visible;" */
}
// On hover$('.on-hover-of-something').hover(function(){$('.my-panel-name').addClass('show');});// On DOM ready$(function(){$('.my-panel-name').addClass('show');});// On Page Load$(window).load(function(){$('.my-panel-name').addClass('show');});
How to hide the panels until hover or clicked?
would like an option to hide the panel unless its required
would it be revealed by this script?
i have a panel up top which loads on page load, but it would be better hidden until hover on activator
The text was updated successfully, but these errors were encountered: