Here is the function I’m thinking of.
I would use the javascript in boostrap to add hover popover as help notice.
The user can choose to display or hide the notice for the whole website.
I plan to override the pages, instead of putting the help info in the pages.
Is there any better way to solve this problem?
Thanks.
Assume you have jquery and some float div containing help information
this div may have some css to keep it float and hidden like
position: absolute, display: none. when you want to show the help inf you may call$('#help1').show()When you want to hide all of them or disable you can call
$('.float_help').hide()or.remove()is that help?